ichimoku

Created at 14 Apr 2020, 14:52
How’s your experience with the cTrader Platform?
Your feedback is crucial to cTrader's development. Please take a few seconds to share your opinion and help us improve your trading experience. Thanks!
LU

luca.tocchi

Joined 25.03.2020

ichimoku
14 Apr 2020, 14:52


how do I print the value of the senkou span a and senkou span B at the last candle?

thanks


@luca.tocchi
Replies

PanagiotisCharalampous
15 Apr 2020, 08:29

Hi Luca,

See an example below

        IchimokuKinkoHyo _ikh;
        protected override void OnStart()
        {
            _ikh = Indicators.IchimokuKinkoHyo(9,26,52);
            Print(_ikh.SenkouSpanA.Last(1));
            Print(_ikh.SenkouSpanB.Last(1));
        }

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous