Topics
Replies
sborisov
04 Oct 2024, 11:51
That is not a bug. Indicators that you use have different scales:
- EMA is has values in the same scale as its source 1.107… in your example
- MACD is measured in 0.000smth
So, these 2 indicators can't have the same Y scale.
When you combine lines of these indicators in the same indicator, the cTrader considers it as single indicator and finds minimum and maximum visible values from all indicator lines and scale them accordingly.
To be honest, I don't see any reason in putting MACD to the main chart, but if you want to do that you can do it by adding 2 separate indicators to the same chart and to the same Panel.
@sborisov
sborisov
15 May 2014, 06:32
Now it is possible to debug your cBots and Custom Indicators in Microsoft Visual Studio.
http://help.spotware.com/calgo/visual-studio/debug-cbots
@sborisov
sborisov
14 May 2014, 12:03
Now you can edit, build and debug your cBots and Custom Indicators in Microsoft Visual Studio. Right click on your cBot or Custom Indicator and press “Edit in Visual Studioâ€.
Announcing video: http://www.youtube.com/watch?v=NgIdMAyWBak
@sborisov
sborisov
04 Oct 2024, 12:28
If cTrader would draw indicator lines independently that will make signal like “line 1” crosses “line 2” phantom.
All indicator lines of the same indicator must be drawn in the same scale.
In your cBot you can use as many indicators as you want. That doesn't require you to combine several incompatible lines to the same indicator.
@sborisov