Table of all trades. Accessed via MQL5 - page 10

 
ascerdfg:
I wanted a cumulative delta curve in general.

What's the problem?

The code is there, write what you want...

 
prostotrader:

What's the problem?

The code is there, write what you want...


Okay. I wanted a lot of things. But why doesn't it start after reopening the terminal?

 
ascerdfg:

(chuckles): Okay. I wanted a lot of things. But why won't it start after reopening the terminal?

There's a bug in the tepminal with tumblr subscriptions. Apparently because of this.

They promised to fix it in the next build.

 
But the first version does work.
 
ascerdfg:
But the first version does work.

That's why

2018.09.11 21:47:49.781 DealsLent_new (RTS-9.18,M1)     OnInit: Не достаточно баров на текущем таймфрейме!
2018.09.11 21:47:49.782 DealsLent_new (RTS-9.18,M1)     Баров = 0

Added

The previous version doesn't work either.

2018.09.11 21:51:15.247 DealsLent (RTS-9.18,M1) OnInit: Не достаточно баров на текущем таймфрейме! должно быть не менее 31
 
prostotrader:

That's why


then remove this check. Then the bars appear.

 
prostotrader:

That's why

Added

The previous version doesn't work either

See above. I linked to your very first version. Posted as text.
 
ascerdfg:

then remove this check. Then the bars appear.

Files:
 
Beautiful! Where do you want me to change it? I'll change in previous versions myself then.
 
ascerdfg:
Beautiful! Where can I change it? I'll change it myself in previous versions.

Removed in OnInit

int cur_bars = Bars(Symbol(), PERIOD_CURRENT);

And the check itself for the number of bars

And added to OnCalculate.

if(cur_bars < 10) return(prev_calculated);