Category Other  Published on 18/08/2020

[PoshTrader] Bid and Ask

Description

ctrader bid and ask

An indicator displaying bid and ask prices with configurable visuals. Such as line thickness, style, color, displacement, and shading the spread.

ctrader bid and ask parameters

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.


powered by PoshTrader Marketplace

 

How to install?


You might also be interested in:

[PoshTrader] ADX Signed

[PoshTrader] Bid and Ask

[PoshTrader] Deal Map

[PoshTrader] Divergence Spotter

[PoshTrader] Market Sentiment

[PoshTrader] Pivot Points

[PoshTrader] Position Axis

[PoshTrader] Renko Tails

[PoshTrader] Symbol Watermark


/* -------------------------------------------------------------------------------
 *
 *      [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's avatar
Jiri

Joined on 31.08.2015

  • Distribution: Free
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: [PoshTrader] Bid and Ask.algo
  • Rating: 5
  • Installs: 9071
Comments
Log in to add a comment.
No comments found.