Obtaining Open Interest values not for the current bar - page 9

 
Karputov Vladimir:

And here are the charts for today:

This is how it should be:


 
Dmitriy Skub:

That's the way it should be:


Please decipher what these indicators mean in MQL5 transcription? What is the correspondence between indicator names and constants in MQL5?
 
Karputov Vladimir:
Please explain what do these indicators mean in MQL5 transcription? What is the correspondence between the indicator names and the constants in MQL5?

Deciphering:

1.Skip the price - too easy.

2.Order Volume - too easy.

3.

SymbolInfoDouble( Symbol( ), SYMBOL_SESSION_BUY_ORDERS_VOLUME );
SymbolInfoDouble( Symbol( ), SYMBOL_SESSION_SELL_ORDERS_VOLUME );

4.Total Orders

( long )SymbolInfoInteger( Symbol( ), SYMBOL_SESSION_BUY_ORDERS );

( long )SymbolInfoInteger( Symbol( ), SYMBOL_SESSION_SELL_ORDERS );


5.Open Interest

SymbolInfoDouble( Symbol( ), SYMBOL_SESSION_INTEREST );

 

1, 2 and 5 can be built even now. 2 and 4 require data collection. And they make no sense at all.

 
fxsaber:

1, 2 and 5 can be built even now. 2 and 4 require data collection. And they make no sense at all.

Have you ever used a terminal in your life? :). How much bullshit can you say? Especially the points 2 and 4 are hilarious.
 
Don't quarrel, colleagues - you are both right!
 
Karputov Vladimir:
Have you even used a terminal once in your life? :). How much heresy can you spout? Especially the one about points 2 and 4 is hilarious.
Stop flubbering. If you do not agree on the merits, let's see your arguments.
 
Dmitriy Skub:
Don't quarrel, colleagues - you are both right!
My question to you remains unanswered

Forum on trading, automated trading systems and testing trading strategies

Testing 'CopyTicks'

fxsaber, 2016.09.08 00:41

Have you checked the directions of the trades too?

 
fxsaber:
My question to you remains unanswered

It happens.
 

The indicator Session Buy/Sell Orders Volume.mq5 as a histogram. The histogram shows for each bar the maximum and minimum values of Session Buy/Sell Orders Volume during the lifetime of the bar:

Session Buy Sell Orders Volume

Reason: