Edit Your Comment
Discussion of the Forex Contest OctaFX Forex Contest
Jun 09, 2014 at 13:27
Nov 15, 2012 부터 멤버
게시물3
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
Jun 09, 2014 at 15:18
Jul 20, 2011 부터 멤버
게시물5
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
Feb 07, 2013 부터 멤버
게시물8
Jun 10, 2014 at 07:50
Feb 07, 2013 부터 멤버
게시물8
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.
Jun 10, 2014 at 21:21
Nov 15, 2012 부터 멤버
게시물3
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
Jun 11, 2014 at 09:56
Jun 04, 2014 부터 멤버
게시물17
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
Jun 11, 2014 at 10:54
Jun 04, 2014 부터 멤버
게시물17
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.
Jun 12, 2014 at 21:23
Nov 02, 2009 부터 멤버
게시물66
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);
}
Jun 12, 2014 at 22:49
Oct 23, 2012 부터 멤버
게시물341
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!
Jun 14, 2014 at 13:45
Feb 07, 2014 부터 멤버
게시물5
I WILL BE FOOLED !! PROBLEMS EVERYWHERE
PLEASE HELP ME , CHECK THE PICTURE
PLEASE HELP ME , CHECK THE PICTURE
Sep 12, 2013 부터 멤버
게시물1

*상업적 사용 및 스팸은 허용되지 않으며 계정이 해지될 수 있습니다.
팁: 이미지/유튜브 URL을 게시하면 게시물에 자동으로 삽입됩니다!
팁: @기호를 입력하여 이 토론에 참여하는 사용자 이름을 자동으로 완성합니다.