[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 738
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
I got it. Thanks for your help.
Good evening, could you please advise me how to put an alert in the indicator, I've tried everything, it beeps at every tick, or doesn't beep at all...
Get it and sign it :)
Hello.
Can you tell me or advise me where to get the .hst or what to generate Eliot waves for the visual tester, (can be in csv file) as in the picture below:
Please, tell me how to compare the close price of i-bar in indicator (for example М15) with the open price of the day
I must not have explained it correctly... for example
If I set DAY = 0, then the price of the i-th bar, let it be M5, will be compared to the open price of today, if DAY = 1, then to the open price of yesterday, etc.
how to make it dynamic... If I wanted to compare it dynamically, i.e. when I copied for example the 1278th bar, it would be compared to the open price of the day when I see this bar.
Assuming that this is a graph of some indicator MAKD or STOH all the same, advise how to describe the entry point in the EA Xmax*0.25 for Selling and Xmin*0.25 for Buy. If the period "n" is not constant and Xmax and Xmin change.
how to implement such an operator
while ( Условие если закрылся любой ордер ) { то опредеяем тип закрытого ордера из списка } значение передаем следущему оператору { по переданому значению выбераем из списка нужный ордер и открываем его } после того как ордер открыт возращяемся в начало
or what other way this loop can be implemented
I must have explained it wrong... for example
If I set DAY = 0, then the price of the i-th bar, let it be M5, will be compared to the open price of today, if DAY = 1, then to yesterday, etc.
how to do it dynamically... i.e. when calculating 1278th bar for example, it was compared to the open price of the day when this bar was opened.
For that, I have a function that returns OHLC of any senior period :)
Parameters:
int OHLC - what data should be taken from the high timeframe, correspond to the standard constants.
string symbol - symbolic name of the instrument.
int timeframe - period of the upper timeframe to work, correspond to the standard constants.
int shif t - optional parameter, specifying the number of the current bar, of the current timeframe, to search for matches of older periods.
Example of function call for your case:
Accordingly iClose("EURUSD",NULL,i) will find the closing price of bar number i of the current chart, and getOHLC(0, "EURUSD",PERIOD_D1,i) the opening price of the day in which bar i of the current chart is.
I must have explained it wrong... for example
If I set DAY = 0, then the price of the i-th bar, let it be M5, will be compared to the open price of today, if DAY = 1, then to the open price of yesterday, etc.
how to do it dynamically... i.e. when calculating 1278th bar for example, it was compared to the open price of the day when this bar was opened.
You first need to calculate which day this bar corresponds to. I'm not at home right now, so I'll give you the function later when I get home in the evening. In the meantime, search for it yourself or figure out how to implement it.
Oops... Already offered a variant....
Assuming that this is a chart of some indicator MAKD or STOH all the same, advise how to describe the entry point in the EA Xmax*0.25 for Selling and Xmin*0.25 for Buy. If the period "n" is not constant and Xmax and Xmin change.
SZY. If the parameters didn't change, we would never have a signal... :)