Edit Your Comment
Discussion of the Forex Contest OctaFX Forex Contest
Biedrs kopš
6 ieraksti
Jun 09, 2014 at 10:09
Biedrs kopš
6 ieraksti
tsedawa posted:
does anybody know what mt4 code i need to put in my EA so that it works for symbols with suffix like EURUSD.ecn?
please help. thx.
Use "Symbol()" in your code -> it will then use the Symbol of the current chart it is attached to.
Biedrs kopš
12 ieraksti
Jun 09, 2014 at 10:10
Biedrs kopš
12 ieraksti
Me too. I don't see it in my MT4.
Fail fast and learn fast from it
Biedrs kopš
3 ieraksti
Jun 09, 2014 at 13:27
Biedrs kopš
3 ieraksti
Use "Symbol()" in your code -> it will then use the Symbol of the current chart it is attached to.
Hi Christian, this will work only if the EA is one pair dedicated. What about if his EA is by default attached to one chart but is looking for setups on all or on some pairs?
Any way, if in your code you see an explicit list of pairs, you should change their names according to OctaFX symbols name, some times it may work (not always).
Best wishes, Nicolae
Biedrs kopš
5 ieraksti
Jun 09, 2014 at 15:18
Biedrs kopš
5 ieraksti
thx for replies
i have Symbol() in my code but still its not working. so when i put these codes its working for the particular pair. what i want is instead of "EURUSD" i need a general formula to cover other pairs. does any body know how?
extern string SymbolSuffix=".ecn"
int init()
if(StringLen(Symbol())>6) CurrentSymbol = ("EURUSD"+SymbolSuffix);
else CurrentSymbol = Symbol();
i have Symbol() in my code but still its not working. so when i put these codes its working for the particular pair. what i want is instead of "EURUSD" i need a general formula to cover other pairs. does any body know how?
extern string SymbolSuffix=".ecn"
int init()
if(StringLen(Symbol())>6) CurrentSymbol = ("EURUSD"+SymbolSuffix);
else CurrentSymbol = Symbol();

forex_trader_111028
Biedrs kopš
8 ieraksti
Jun 10, 2014 at 07:50
Biedrs kopš
8 ieraksti
What I have always done is code it like this -
I first make an-
extern string Symbol_1 = "EURUSD.ecn"
Repeat making extern strings for as many symbols as your EA uses. Then go down into your code and change your symbol() to Symbol_1, and so on.
This way you can type in the broker symbol and suffix into the external variables once it's on the chart.
I first make an-
extern string Symbol_1 = "EURUSD.ecn"
Repeat making extern strings for as many symbols as your EA uses. Then go down into your code and change your symbol() to Symbol_1, and so on.
This way you can type in the broker symbol and suffix into the external variables once it's on the chart.
Biedrs kopš
3 ieraksti
Jun 10, 2014 at 21:21
Biedrs kopš
3 ieraksti
I don't know if it is allowed to post code here .... but may be useful for contest participants using experts.
I've made a script, for my personal use, that dully identifies all pairs in the symbols provided by the broker.
For example, if a broker provides a symbol named "EuR loves uSD" the script will understand that is about EURUSD and will act properly. If the name will be "uSd is better than Eur" the script will identify the pair "USDEUR" and will take it as it is (this is important for users of EAs that include a strong/weak analysis filter module).
This is the module:
int Pairs_Data()
{
/* +-----------------------------------------------------------+
| Outputs: |
| Pairs[i] Pair "i" symbol |
| Currencies[i] Currency "i" symbol |
| Multiplier[i] Pair "i" Multiplier Price - Pips |
| Pips = Price Difference x Multiplier |
| Currency_In_Pair[i][k] Currencies in pair "i" |
| where k =1 or 2 |
| Currency_In_Pair[i][1]=j (code of the first currency) |
| Currency "j" is the FIRST currency in pair "i" |
| Currency_In_Pair[x][2]=k (code of the second currency)|
| Declarations |
| The following arrays should be declared in the main area:|
| string Currencies[9]; |
| string Pairs[29]; |
| int Multiplier[29]; |
| int Currency_In_Pair[29][3]; |
+-----------------------------------------------------------+ */
int P_i, P_j, P_k, Currency_1_Position, Currency_2_Position, C1_i, C2_i, C_Search, P_Pair_Code;
string Symbol_List[];
// +-----------------------------------------------------+
// | Currencies |
// +-----------------------------------------------------+
Currencies[1]="USD"; Currencies[2]="EUR"; Currencies[3]="GBP"; Currencies[4]="CHF";
Currencies[5]="JPY"; Currencies[6]="AUD"; Currencies[7]="NZD"; Currencies[8]="CAD";
// +-----------------------------------------------------+
// | Pairs |
// +-----------------------------------------------------+
ArrayResize(Symbol_List,SymbolsTotal(false)+2); // Resize Symbol_List with the actual number of Symbols provided by broker
for (P_k=0;P_k<=SymbolsTotal(false);P_k++) Symbol_List[P_k]=SymbolName(P_k,false); // Loads array Symbol_List with all Symbols provided by broker
for (P_k=0;P_k<=SymbolsTotal(false);P_k++) StringToUpper(Symbol_List[P_k]); // Converts all letters in the Symbol_List in upper case
P_Pair_Code=0;
for (C1_i=1;C1_i<=7;C1_i++) // Currency 1 cycle
{
for(C2_i=C1_i+1;C2_i<=8;C2_i++) // Currency 2 cycle
{
for (P_k=0;P_k<=SymbolsTotal(false);P_k++) // Symbols cycle
{
Currency_1_Position=-1; Currency_2_Position=-1; // Initialization of currency position in Symbol
for (C_Search = 0; C_Search<= StringLen(Symbol_List[P_k])-3;C_Search ++) // Search in the Symbol name if some currency is found
{
if(Currencies[C1_i]==StringSubstr(Symbol_List[P_k],C_Search,3)) Currency_1_Position = C_Search; // Currency C1_i found somewhere in the Symbol name (in position C_Search)
if(Currencies[C2_i]==StringSubstr(Symbol_List[P_k],C_Search,3)) Currency_2_Position = C_Search; // Currency C2_i found somewhere in the Symbol name (in position C_Search)
}
if(MathAbs(Currency_1_Position - Currency_2_Position)>=3 && // No currency name overlap accidentally
Currency_1_Position>=0 && // Currency_1 found in the Symbol
Currency_2_Position>=0) // Currency_2 found in the Symbol
// We have a pair.
{
P_Pair_Code++; // New pair, new code
Pairs[P_Pair_Code] = SymbolName(P_k,false); // Loads in the pairs' array the symbol name from SymbolName(P_k,false)
if (Currency_1_Position
I've made a script, for my personal use, that dully identifies all pairs in the symbols provided by the broker.
For example, if a broker provides a symbol named "EuR loves uSD" the script will understand that is about EURUSD and will act properly. If the name will be "uSd is better than Eur" the script will identify the pair "USDEUR" and will take it as it is (this is important for users of EAs that include a strong/weak analysis filter module).
This is the module:
int Pairs_Data()
{
/* +-----------------------------------------------------------+
| Outputs: |
| Pairs[i] Pair "i" symbol |
| Currencies[i] Currency "i" symbol |
| Multiplier[i] Pair "i" Multiplier Price - Pips |
| Pips = Price Difference x Multiplier |
| Currency_In_Pair[i][k] Currencies in pair "i" |
| where k =1 or 2 |
| Currency_In_Pair[i][1]=j (code of the first currency) |
| Currency "j" is the FIRST currency in pair "i" |
| Currency_In_Pair[x][2]=k (code of the second currency)|
| Declarations |
| The following arrays should be declared in the main area:|
| string Currencies[9]; |
| string Pairs[29]; |
| int Multiplier[29]; |
| int Currency_In_Pair[29][3]; |
+-----------------------------------------------------------+ */
int P_i, P_j, P_k, Currency_1_Position, Currency_2_Position, C1_i, C2_i, C_Search, P_Pair_Code;
string Symbol_List[];
// +-----------------------------------------------------+
// | Currencies |
// +-----------------------------------------------------+
Currencies[1]="USD"; Currencies[2]="EUR"; Currencies[3]="GBP"; Currencies[4]="CHF";
Currencies[5]="JPY"; Currencies[6]="AUD"; Currencies[7]="NZD"; Currencies[8]="CAD";
// +-----------------------------------------------------+
// | Pairs |
// +-----------------------------------------------------+
ArrayResize(Symbol_List,SymbolsTotal(false)+2); // Resize Symbol_List with the actual number of Symbols provided by broker
for (P_k=0;P_k<=SymbolsTotal(false);P_k++) Symbol_List[P_k]=SymbolName(P_k,false); // Loads array Symbol_List with all Symbols provided by broker
for (P_k=0;P_k<=SymbolsTotal(false);P_k++) StringToUpper(Symbol_List[P_k]); // Converts all letters in the Symbol_List in upper case
P_Pair_Code=0;
for (C1_i=1;C1_i<=7;C1_i++) // Currency 1 cycle
{
for(C2_i=C1_i+1;C2_i<=8;C2_i++) // Currency 2 cycle
{
for (P_k=0;P_k<=SymbolsTotal(false);P_k++) // Symbols cycle
{
Currency_1_Position=-1; Currency_2_Position=-1; // Initialization of currency position in Symbol
for (C_Search = 0; C_Search<= StringLen(Symbol_List[P_k])-3;C_Search ++) // Search in the Symbol name if some currency is found
{
if(Currencies[C1_i]==StringSubstr(Symbol_List[P_k],C_Search,3)) Currency_1_Position = C_Search; // Currency C1_i found somewhere in the Symbol name (in position C_Search)
if(Currencies[C2_i]==StringSubstr(Symbol_List[P_k],C_Search,3)) Currency_2_Position = C_Search; // Currency C2_i found somewhere in the Symbol name (in position C_Search)
}
if(MathAbs(Currency_1_Position - Currency_2_Position)>=3 && // No currency name overlap accidentally
Currency_1_Position>=0 && // Currency_1 found in the Symbol
Currency_2_Position>=0) // Currency_2 found in the Symbol
// We have a pair.
{
P_Pair_Code++; // New pair, new code
Pairs[P_Pair_Code] = SymbolName(P_k,false); // Loads in the pairs' array the symbol name from SymbolName(P_k,false)
if (Currency_1_Position

forex_trader_125297
Biedrs kopš
3 ieraksti
Jun 11, 2014 at 09:48
Biedrs kopš
3 ieraksti
Are USA citizens allowed to participate in this contest ? I was able to successfully register too.
Biedrs kopš
17 ieraksti
Jun 11, 2014 at 09:56
Biedrs kopš
17 ieraksti
protrader624 posted:
One of the rules states,NO IP MATCH,what does this mean?
hi
found this under octa fx promotion rules (8 Dollars promotion account)
ANY IP match between 2 accounts regardless of trading style, name, email, country, etc. will be considered as multiple bonus
accounts. Such accounts will be blocked, and all withdrawals will be rejected
Biedrs kopš
17 ieraksti
Jun 11, 2014 at 10:54
Biedrs kopš
17 ieraksti
protrader624 posted:
Are trader's from the USA allowed ?
you know the laws in America.
for demo u can trade what u want but when it comes to real account u has to reduce the leverage i think.dont know if octa is
allowed to offer real accounts in America.when u win u have to be sure its all legal otherwise your prize will go to the next one.
Biedrs kopš
5 ieraksti
Jun 11, 2014 at 13:02
Biedrs kopš
5 ieraksti
Guys please HELP
I need the renko chart for ECN ACCOUNT
Please help me
I need the renko chart for ECN ACCOUNT
Please help me
Biedrs kopš
66 ieraksti
Jun 12, 2014 at 21:23
Biedrs kopš
66 ieraksti
Kulae posted:
Use "Symbol()" in your code -> it will then use the Symbol of the current chart it is attached to.
Hi Christian, this will work only if the EA is one pair dedicated. What about if his EA is by default attached to one chart but is looking for setups on all or on some pairs?
Any way, if in your code you see an explicit list of pairs, you should change their names according to OctaFX symbols name, some times it may work (not always).
Best wishes, Nicolae
// pass symbol to this function to "fix" the symbol name
string fixSymbol(string sym) {
return StringSubstring(sym, 0, 6) + StringSubstring(Symbol(), 6);
}
Biedrs kopš
341 ieraksti
Jun 12, 2014 at 22:49
Biedrs kopš
341 ieraksti
mamista posted:
Guys please HELP
I need the renko chart for ECN ACCOUNT
Please help me
here is the one i use...
http://www.myfxbook.com/files/sirius1fx/RenkoLiveChart_EA_Yn.mq4
if you follow the flock like sheep you always end up stepping in shit!
Biedrs kopš
16 ieraksti
Biedrs kopš
5 ieraksti
Jun 14, 2014 at 13:45
Biedrs kopš
5 ieraksti
I WILL BE FOOLED !! PROBLEMS EVERYWHERE
PLEASE HELP ME , CHECK THE PICTURE
PLEASE HELP ME , CHECK THE PICTURE
Biedrs kopš
6 ieraksti
Biedrs kopš
1 ieraksti
Biedrs kopš
2 ieraksti
Biedrs kopš
2 ieraksti
Jun 14, 2014 at 14:02
Biedrs kopš
2 ieraksti
what is the broker s specific servers? no support good?😡
Biedrs kopš
17 ieraksti
Jun 14, 2014 at 21:07
Biedrs kopš
17 ieraksti
mori78 posted:
your mta 4 can not be installed on windows7?
I have windows 7 and it works fine
Biedrs kopš
17 ieraksti
Jun 14, 2014 at 21:07
Biedrs kopš
17 ieraksti
mamista posted:
I WILL BE FOOLED !! PROBLEMS EVERYWHERE
PLEASE HELP ME , CHECK THE PICTURE
For ther contest is a real account needed first

*Spams netiks pieļauts, un tā rezultātā var slēgt kontu.
Tip: Posting an image/youtube url will automatically embed it in your post!
Tip: Type the @ sign to auto complete a username participating in this discussion.