[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 990

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
Good afternoon.
Can you tell me how to make an indicator like USDx but with other currencies too
What kind of currencies?
And the xls didn't show?
I don't understand what xls has to do with it, it's just that there is a universal indicator. You can insert any instrument (almost certainly) with a dollar in it. But the calculation of coefficients is a personal matter
Hello!
Help for a beginner :)
I need to determine how the first candle closed at the beginning of the trading day above the MA or below. I do not understand how to do it.
How to determine the current price above or below there is no problem, but it is the FIRST candle at the opening of trading.
I am using the 15 minute timeframe.
Thank you!
Guys, call back who will help me in writing the expert, that is, I do not want me to someone to write it, I want to understand myself, but I need help in the process of creation, who can write a box or in an inbox?
I am not very strong but a couple of tips I can give myself have already written 4 pieces, working but not effective, but now have decided to change the approach to coding a little bit so please contact ash 419 796 501
and ask a counter question the variable Point always gives the right figure? I mean for five digits and four digits, or for five digits need to be multiplied by 10
Example .....(.............0,Ask - Teyk*Point) for 4 digits is clear, but for five digits should we multiply by 10?
and ask a counter question the variable Point always gives the right figure? I mean for five digits and four digits, or for five digits need to be multiplied by 10
Example .....(.............0,Ask - Teyk*Point) for 4 digits is clear, but for five digits should we multiply by 10?
then another better example
how does this behave
if (Bid <=Low&& Ask < High - 10*Point)
return (21);
I am sure that in 4 digits is ok but in 5 digits is wrong, I think that Point should be multiplied by 10?
try initing to assign delta
delta = 1; if(digits = 5) {delta = 10;}
and in the text add
if (Bid <=Low&& Ask < High - 10*Point*delta)