ichimoku
Created at 14 Apr 2020, 14:52
LU
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
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