sumsv:
Now: I want to trade serveral pairs. How do i manage this ? And can i use my include files for every EA or does every new EA need its own include files so that i have to copy and rename them for every new EA ? And is there a problem, when all the different EAs use the same Names for the (include)Variables ? (i prefer not to rename 1280 Variables for every new EA :-)) Which EA is then calculatet first ? (Calculation every hour when no open Trade, otherwise Calculation on every Tick) |
|
sumsv:
Now: I want to trade serveral pairs. How do i manage this ? And can i use my include files for every EA or does every new EA need its own include files so that i have to copy and rename them for every new EA ? And is there a problem, when all the different EAs use the same Names for the (include)Variables ? (i prefer not to rename 1280 Variables for every new EA :-)) Which EA is then calculatet first ? (Calculation every hour when no open Trade, otherwise Calculation on every Tick) |
Danke sehr |
you can handle other symbols in current chart,just pass the symbol string as parameter,do not use symbol() or null as the first parameter
iRSI(localsymbol,rsitimeframe,rsiperiod,rsiappliedprice,rsishift);

- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Hello,
after 1.5 Years of programming my EA is ready to start, but i'm still a beginner.
Now: I want to trade serveral pairs. How do i manage this ?
I think, i have to copy my EA and rename it for every single pair and then open all the Charts and attach the new EAs to them, is that right ?
(i.e. MyExpertEUREUD, MyExpertUSDJYN, ....)
And can i use my include files for every EA or does every new EA need its own include files so that i have to copy and rename them for every new EA ?
And is there a problem, when all the different EAs use the same Names for the (include)Variables ? (i prefer not to rename 1280 Variables for every new EA :-))
(i.e. then i would have an (include) Varaible called "EntryBuyLevel" in EA "MyExpertEURUSD" and the same (include) Variable "EntryBuyLevel" in EA "MyExpertUSDJPY")
Which EA is then calculatet first ? (Calculation every hour when no open Trade, otherwise Calculation on every Tick)
Thanks a lot
Mark