I currently trade with FXCM and Trading Station. I'm very reliant on the separate Bid and Ask candles that are available on that platform. I've had a look through the documentation but can't find any reference to Bid and Ask streams for cTrader like I have in Indicore SDK. Am I able to write an indicator that would display Ask candles on cTrader?
First of all, you can choose what lines you want displayed on the chart:
Second, if you write your own code, just get the symbol's “ASK” price or “BID” price depending on what you want to display.
eg: Symbol.Ask
As the topic says I need Bid and Ask Candles
Then as I said, you'll have to write your own code. There is no option to display both bid and ask candles next to each other, or anywhere together, on a chart.
firemyst
01 Oct 2024, 00:19
Yes, you are.
First of all, you can choose what lines you want displayed on the chart:
Second, if you write your own code, just get the symbol's “ASK” price or “BID” price depending on what you want to display.
eg: Symbol.Ask
@firemyst