Description
An indicator displaying bid and ask prices with configurable visuals. Such as line thickness, style, color, displacement, and shading the spread.
What Is Bid and Ask?
The term bid and ask (also known as bid and offer) refers to a two-way price quotation that indicates the best potential price at which a security can be sold and bought at a given point in time. The bid price represents the maximum price that a buyer is willing to pay for futures contracts, options, or currency pairs. The ask price represents the minimum price that a seller is willing to take for that same security. A trade or transaction occurs after the buyer and seller agree on a price for the security which is no higher than the bid and no lower than the ask.
The difference between bid and ask prices, or the spread, is a key indicator of the liquidity of the asset. In general, the smaller the spread, the better the liquidity.
You might also be interested in:
/* -------------------------------------------------------------------------------
*
* [PoshTrader] Bid and Ask
*
* Copyright (C) 2020, PoshTrader Ltd (https://poshtrader.com)
* PoshTrader reserves the right to modify or overwrite this algo with each release.
*
* https://poshtrader.com/items/ctrader/5356/
*
* -------------------------------------------------------------------------------
*/
using cAlgo.API;
using PoshTrader.Licensing;
namespace cAlgo
{
[Item(5356, "Bid and Ask", Author = "PoshTrader")]
[Indicator(IsOverlay = true, AccessRights = AccessRights.FullAccess)]
public class BidAndAsk : Indicator
{
protected override void Initialize()
{
new ItemLicense(this);
}
public override void Calculate(int index) { }
}
}
Jiri
Joined on 31.08.2015
- Distribution: Free
- Language: C#
- Trading platform: cTrader Automate
- File name: [PoshTrader] Bid and Ask.algo
- Rating: 5
- Installs: 9290
- Modified: 13/10/2021 09:55
Ok so I'm confused….. where do we get this??