[WARNING CLOSED!] Any newbie question, so as not to clutter up the forum. Professionals, don't go by. Can't go anywhere without you. - page 508

 

If so, you can, it will be all right.

 
Roger писал(а) >>

If so, you can, it will be right.


>> Thank you!
I feel much better now... :).. I'll sleep well...

 
Hi all ! Need some help. I have EA code, the problem is in pulling up the stop for orders opened to sell. I looked through the code several times but i couldn't find the reason. Maybe something is missing...?
Files:
complexon.mq4  43 kb
 
Hi, I'm trying to write the indicator values into an array again and I can't get anything:(
Can you tell me what's wrong or am I doing something right?


int array[10]; //array of the last 10 MA values
int shift;

for(shift=0;shift<=9;shift++)
{
mov[shift]=iMA(NULL,240,12,0,0,0,shift);}
 
What is this, mov[] ? if an array, where is the declaration ?
 
Probably the easiest question, but I'm tired of looking for an answer.
tell me, what price does the software display when you want to know the minimum or maximum price, Bid or Ask? and how do you change one to the other? for example, I want to know the minimum price of a bar at Ask price and the maximum at Bid.
much appreciation in advance
 
tvar писал(а) >>
This is probably the easiest question, but I'm tired of searching for an answer.
What price does the software display when I want to know the minimum or maximum price, Bid or Ask? and how can I change one to the other? for example, I want to know the minimum bar price in the Ask price and the maximum price in the Bid price.
Thank you very much in advance.


What do High and Low do not suit you?
 
Vinin >>:


А чем High и Low не устраивают?

Yes they do...but the uncertainty still gnaws at me...and I want to find out:

is High the maximum selling or buying price? and so is Low...

 
DDFedor писал(а) >>


have you read this? https://book.mql4.com/ru/appendix/glossary

High-Low and Ask-Bid are different things.


>> Of course they are. But if they are not specially stored, how to get them from the history (Bid and Ask)
 
tvar писал(а) >>

Is High the maximum selling or buying price? and so is Low...


High and Low values are given for Bid. For Ask, add the value of the spread.

Reason: