vushel:
The functions are in include file.
Also i couldnt see the Arrow on the visual graph at BackTesting,
Which script canceling StopLoss\TP since one of the has been fiiled ?
In order im not sure that my RiskManger and the using with Array in takeprofit\StopLoss is fine (efficient\write correct)
the compilor didnt make any problem with the syntax buy im affrid there are problems with the program
May anyone help me ?
- Which you didn't post. No mind-readers here.
- What arrow are you talking about. No mind-readers here.
- You didn't post any scripts. No mind-readers here.
- Which you didn't post. No mind-readers here.
- Not a question.
- Fix your indenting. Check your return values. Post/attach your code. Ask a specific question(s) not vague statements.
WHRoeder:
- Which you didn't post. No mind-readers here.
- What arrow are you talking about. No mind-readers here.
- You didn't post any scripts. No mind-readers here.
- Which you didn't post. No mind-readers here.
- Not a question.
- Fix your indenting. Check your return values. Post/attach your code. Ask a specific question(s) not vague statements.
when i'm talking about "arrow" , i mean the arrow that's show buy\sell order execution .
thos script write correct ? (the using with Arrays and lose\profit function)
/*Calculate StopLoss*/ int LowestShift = iLowest(NULL,0,MODE_LOW,4,0); StopLoss = Low[LowestShift]; /*Calculate TakePorfit*/ int HighestShift = iHighest(NULL,0,MODE_HIGH,9,0); TakeProfit = High[HighestShift]; /*risk menager*/ double profit = TakeProfit - Bid ; double lose = Ask - StopLoss; SUM = lose / profit; /* Begin trade block*/ if(NewBar == true && SUM <= 1.2)
Files:
includeexample.mqh
26 kb
vushel: when i'm talking about "arrow" , i mean the arrow that's show buy\sell order execution .
Those arrows come from some indicator, nothing to do with open orders. Tester arrows look like this
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
The functions are in include file.
Also i couldnt see the Arrow on the visual graph at BackTesting,
Which script canceling StopLoss\TP since one of the has been fiiled ?
In order im not sure that my RiskManger and the using with Array in takeprofit\StopLoss is fine (efficient\write correct)
the compilor didnt make any problem with the syntax buy im affrid there are problems with the program
May anyone help me ? i'm new at EA .
Thanks!!!