protected override void Initialize()
{
Overlay = true;
AddRenko(Instrument.MasterInstrument.Name,100,MarketDataType.Last);
CalculateOnBarClose = true;
}
protected override void OnBarUpdate()
{
Print("1");
if (BarsInProgress == 1){
Print("2");
}
if (BarsInProgress == 0){
Print("3");
}
}
i also tried refering to the instrument by simply AddRenko("EURUSD",...) but same thing.
help?!

Comment