lewdfinger
02-11-2007, 10:02 PM
I want to compare the EMA(200)[0] to EMA(200)[40] or higher but when I assign the latter to a variable it comes up null - the most I can get is 20 bars ago.
Is there a way to increase the maximum number of bars one can reference?
protected override void OnBarUpdate()
{
Print(EMA(200)[20].ToString());
}
KD
Is there a way to increase the maximum number of bars one can reference?
protected override void OnBarUpdate()
{
Print(EMA(200)[20].ToString());
}
KD