Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.
From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.
Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
Elite Section
Get access to private discussions, specialized support, indicators and trading systems reported every week.
Advanced Elite Section
For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
This is an EA I want to share!
Its name "Ali" is the name of one of my friends who suggest the idea!
The idea behind it is:
The EURUSD go the opposite way of the USDCHF,
Well!
We place 2 Buy or Sell orders, one for the EURUSD and one for USDCHF and when the price of one of them go up to 5 pips we place another order of this currency.
We take the profit by calculating all the opened positions (3 or 2) and close them all.
No big profit and no big loss!
__________________
There is a fine line between freedom of expression and hate literature.
This is an EA I want to share!
Its name "Ali" is the name of one of my friends who suggest the idea!
The idea behind it is:
The EURUSD go the opposite way of the USDCHF,
Well!
We place 2 Buy or Sell orders, one for the EURUSD and one for USDCHF and when the price of one of them go up to 5 pips we place another order of this currency.
We take the profit by calculating all the opened positions (3 or 2) and close them all.
No big profit and no big loss!
Salaam Mohammed,
Thank you for sharing an ea.
I want a little more explaination how if works, if you don't mind.
Peace.
SFX
This is an EA I want to share!
Its name "Ali" is the name of one of my friends who suggest the idea!
The idea behind it is:
The EURUSD go the opposite way of the USDCHF,
Well!
We place 2 Buy or Sell orders, one for the EURUSD and one for USDCHF and when the price of one of them go up to 5 pips we place another order of this currency.
We take the profit by calculating all the opened positions (3 or 2) and close them all.
No big profit and no big loss!
Thanks for EA my friend,
Who realy works... i have 2 buys on eur/usd and 1 buy usd/chf.
What is the settings.. is default? and the best time frame?
Time frame doesn't matter. You can use the default settings.
But, it doesn't seem to be closing trades? I looked at the code and I'm not sure why. I'll have another look.
I also think I might change it so that it opens a Lot of USD/CHF with the same dollar value as the lot of EUR/USD, because right now the hedge is a bit lop-sided. Or was that intentional?
I've tried this strategy before, well the difference in movement is depicted in the EUR/CHF pair, since you would be indiretly buying or seling it when you enter into the 2 positions.....
The previous version was not able to close the opened position.
Please try this verison!
The idea:
The EURUSD go in the opposite direction of USDCHF.
When we buy EURUSD and USDCFH it's very like that we buy EURUSD and sell EURUSD. but the only advantage is that some brokers limit you to hedge your positions by buy and selling the same currency.
The both of opened positions now going in contrary directions and they maintain the loss (it's almost the spread of opening 2 passions).
When one of the two currency make profit (5 pips) we open another position of this currency.
We take profit at 5Pips and close all the poisons or we close them when we make 10 Pips loss.
PHP Code:
//---- Includes #include <stdlib.mqh> //---- Trades limits extern double ProfitToTake = 5; extern double LossToPrevent = -15; extern int Sell = 1; // use 0 for Buy extern double Lots = 0.1; extern int Slippage = 5; extern int Level=5; //--- Global variables int MagicNumber = 101090; string ExpertComment = "Ali";
//+------------------------------------------------------------------ int init() { return(0); } int deinit() { return(0); } //+------------------------------------------------------------------
//+------------------------------------------------------------------+ int start() { int cnt,total;
if(Bars<100) {Print("bars less than 100"); return(0);}
The previous version was not able to close the opened position.
Please try this verison!
The idea:
The EURUSD go in the opposite direction of USDCHF.
When we buy EURUSD and USDCFH it's very like that we buy EURUSD and sell EURUSD. but the only advantage is that some brokers limit you to hedge your positions by buy and selling the same currency.
The both of opened positions now going in contrary directions and they maintain the loss (it's almost the spread of opening 2 passions).
When one of the two currency make profit (5 pips) we open another position of this currency.
We take profit at 5Pips and close all the poisons or we close them when we make 10 Pips loss.
PHP Code:
//---- Includes
#include <stdlib.mqh>
//---- Trades limits
extern double ProfitToTake = 5;
extern double LossToPrevent = -15;
extern int Sell = 1; // use 0 for Buy
extern double Lots = 0.1;
extern int Slippage = 5;
extern int Level=5;
//--- Global variables
int MagicNumber = 101090;
string ExpertComment = "Ali";
//+------------------------------------------------------------------
int init()
{
return(0);
}
int deinit()
{
return(0);
}
//+------------------------------------------------------------------
//+------------------------------------------------------------------+
int start()
{
int cnt,total;
if(Bars<100) {Print("bars less than 100"); return(0);}