Munich, Germany
Experience: Intermediate
Platform: NinjaTrader, TWS
Broker: IB, NinjaTrader Brokerage
Trading: ES,NQ,6E
Posts: 73 since Feb 2010
Thanks Given: 15
Thanks Received: 25
|
I am new to Multicharts and want to understand following code
Vars:
value1(0)
depth(12),
shift(0);
for shift = ( currentbar - depth ) downto 0
begin
value1 = Low[LowestBar(low, depth)[shift] ];
end;
what is index of
LowestBar(low, depth)[shift]
|