I would like to have a multi-time frame SMA lets say period 13, value 3 on second panel (panel 2) range8.
right now i use the code:
Add(PeriodType.Range, 13);
SMA(BarsArray[1], 3).Panel = 1;
Add(SMA(BarsArray[1], 3));
but it is not working. nothing showed at all. is there another way to make it ?
thanks

Regards,
Frederic

Comment