This system is not new because it has been discussed in the Forum Forexfactory years ago . This idea came from a user called Trader101, sometimes referred to as the Forum System T101.
This is the Concept of Trader101
Set up a demo account . This demo account works as an indicator . Starts counting at the beginning of the first week and this will go a good look at couples like weeks . Couples are imperfect hedge each other . There is no stop loss or take profit in this account . The choice of couples is very important and must be precise . The exact mix will depend on what your broker has available. Open 14 as described below.
Buys
1. CADJPY
2. AUDUSD
3. USDJPY
4. EURUSD
5. EURCHF
6. GBPJPY
7. USDCAD
Sells..
8. GBPUSD
9. EURGBP
10. GBPCHF
11. CHFJPY
12. AUDJPY
13. EURJPY
14. USDCHF
But these are the IBFX pairs, because IBFX does not have CADJPY
Buys..
1) GBPUSD
2) EURGBP
3) GBPJPY
4) USDCHF
5) NZDUSD
6) AUDJPY
7) EURJPY
Sells..
8) EURUSD
9) USDJPY
10) AUDUSD
11) NZDJPY
12) GBPCHF
13) CHFJPY
14) EURCHF
If possible , run a script suitable for the opening of all the pairs at the same time . Count couples. If there are less than 14 pairs, the pairs missing open as quickly as possible. Double-click
To make the profit column of the current terminal , so that the pairs final results remain positive at the top and the Negative remain on the ground . In the first place, the sequence of these pairs is a mess, but let it run for one day or two and you'll notice that couples begin to sort itself . All purchases must remain a to finish and sell the ' other like a bottle of dirty water settling in layers. This is called the
" Ideal location ". The highest and lowest slots are indicated the " anchor points ". The Top Anchor in slot 1, the soil may be anchored in the slot 14. The pairs of in a different order, but
What an anchor pair is in slot 1 or 14
Ideal Position
___________________________________________________
When USDCAD jumps up and switches places with GBPJPY, this is an indication that there might be a trend reversal.
When GBPUSD jumps below EURGBP this is another indication of trend reversal.
When both jump it is an even better indication of trend reversal!
Since the sells are on top and the buys are on bottom, the trend is leaning toward the LONG direction when entering all pairs.
___________________________________________________
Trade the pairs according to this rule:
1) if Sell pair jumps up -------- trade Short that pair
2) if Buy pair jumps down -----trade Short that pair
3) if the Sell pair jumps down--trade Long that pair
4) if the Buy pair jumps up-----trade Long that pair
You can continue reading this method at ForexFactory at this link
http://www.forexfactory.com/showthread.php?t=107119
Script Trade Hedge
Run on Demo account or Cent account lot 0.01 (For check indicator)
//+------------------------------------------------------------------+
//| TradeHedge.mq4 |
//| Copyright ฉ 2008, Trader101 |
//| trader101@optonline.net |
//+------------------------------------------------------------------+
#property copyright "Copyright ฉ 2008, Trader101"
#property link "trader101@optonline.net"
#property show_inputs
extern double Lot = 0.01;
//+------------------------------------------------------------------+
//| script program start function |
//+------------------------------------------------------------------+
int start()
{
OrderSend("EURJPY",OP_SELL, Lot, MarketInfo("EURJPY",MODE_BID), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("GBPUSD",OP_SELL, Lot, MarketInfo("GBPUSD",MODE_BID), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("EURGBP",OP_SELL, Lot, MarketInfo("EURGBP",MODE_BID), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("GBPCHF",OP_SELL, Lot, MarketInfo("GBPCHF",MODE_BID), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("CHFJPY",OP_SELL, Lot, MarketInfo("CHFJPY",MODE_BID), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("USDCHF",OP_SELL, Lot, MarketInfo("USDCHF",MODE_BID), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("AUDJPY",OP_SELL, Lot, MarketInfo("AUDJPY",MODE_BID), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("USDJPY",OP_BUY, Lot, MarketInfo("USDJPY",MODE_ASK), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("EURUSD",OP_BUY, Lot, MarketInfo("EURUSD",MODE_ASK), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("EURCHF",OP_BUY, Lot, MarketInfo("EURCHF",MODE_ASK), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("GBPJPY",OP_BUY, Lot, MarketInfo("GBPJPY",MODE_ASK), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("USDCAD",OP_BUY, Lot, MarketInfo("USDCAD",MODE_ASK), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("CADJPY",OP_BUY, Lot, MarketInfo("CADJPY",MODE_ASK), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("AUDUSD",OP_BUY, Lot, MarketInfo("AUDUSD",MODE_ASK), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
return(0);
}
//+----------------------------------------------------------------------------------------------------+
Script Trade Buy-All (Run on Real account)
//+------------------------------------------------------------------+
//| Trade Buy-All.mq4 |
//| Copyright ฉ 2008, Trader101 |
//| trader101@optonline.net |
//+------------------------------------------------------------------+
#property copyright "Copyright ฉ 2008, Trader101"
#property link "trader101@optonline.net"
#property show_inputs
extern double Lot = 0.1;
//+------------------------------------------------------------------+
//| script program start function |
//+------------------------------------------------------------------+
int start()
{
OrderSend("EURJPY",OP_BUY, Lot, MarketInfo("EURJPY",MODE_BID), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("GBPUSD",OP_BUY, Lot, MarketInfo("GBPUSD",MODE_BID), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("EURGBP",OP_BUY, Lot, MarketInfo("EURGBP",MODE_BID), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("GBPCHF",OP_BUY, Lot, MarketInfo("GBPCHF",MODE_BID), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("CHFJPY",OP_BUY, Lot, MarketInfo("CHFJPY",MODE_BID), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("USDCHF",OP_BUY, Lot, MarketInfo("USDCHF",MODE_BID), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("AUDJPY",OP_BUY, Lot, MarketInfo("AUDJPY",MODE_BID), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("USDJPY",OP_BUY, Lot, MarketInfo("USDJPY",MODE_ASK), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("EURUSD",OP_BUY, Lot, MarketInfo("EURUSD",MODE_ASK), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("EURCHF",OP_BUY, Lot, MarketInfo("EURCHF",MODE_ASK), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("GBPJPY",OP_BUY, Lot, MarketInfo("GBPJPY",MODE_ASK), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("USDCAD",OP_BUY, Lot, MarketInfo("USDCAD",MODE_ASK), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("CADJPY",OP_BUY, Lot, MarketInfo("CADJPY",MODE_ASK), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("AUDUSD",OP_BUY, Lot, MarketInfo("AUDUSD",MODE_ASK), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
return(0);
}
//+----------------------------------------------------------------------------------------------------+
Script Trade Sale-All (Run on Real account)
//+------------------------------------------------------------------+
//| Trade Sale-All.mq4 |
//| Copyright ฉ 2008, Trader101 |
//| trader101@optonline.net |
//+------------------------------------------------------------------+
#property copyright "Copyright ฉ 2008, Trader101"
#property link "trader101@optonline.net"
#property show_inputs
extern double Lot = 0.1;
//+------------------------------------------------------------------+
//| script program start function |
//+------------------------------------------------------------------+
int start()
{
OrderSend("EURJPY",OP_SELL, Lot, MarketInfo("EURJPY",MODE_BID), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("GBPUSD",OP_SELL, Lot, MarketInfo("GBPUSD",MODE_BID), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("EURGBP",OP_SELL, Lot, MarketInfo("EURGBP",MODE_BID), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("GBPCHF",OP_SELL, Lot, MarketInfo("GBPCHF",MODE_BID), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("CHFJPY",OP_SELL, Lot, MarketInfo("CHFJPY",MODE_BID), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("USDCHF",OP_SELL, Lot, MarketInfo("USDCHF",MODE_BID), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("AUDJPY",OP_SELL, Lot, MarketInfo("AUDJPY",MODE_BID), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("USDJPY",OP_SELL, Lot, MarketInfo("USDJPY",MODE_ASK), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("EURUSD",OP_SELL, Lot, MarketInfo("EURUSD",MODE_ASK), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("EURCHF",OP_SELL, Lot, MarketInfo("EURCHF",MODE_ASK), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("GBPJPY",OP_SELL, Lot, MarketInfo("GBPJPY",MODE_ASK), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("USDCAD",OP_SELL, Lot, MarketInfo("USDCAD",MODE_ASK), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("CADJPY",OP_SELL, Lot, MarketInfo("CADJPY",MODE_ASK), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
OrderSend("AUDUSD",OP_SELL, Lot, MarketInfo("AUDUSD",MODE_ASK), 2, NULL, NULL, NULL, 0, 0, CLR_NONE);
return(0);
}
//+----------------------------------------------------------------------------------------------------+
ไม่มีความคิดเห็น:
แสดงความคิดเห็น