95评论

6收藏

Lucky 5 Russain forex system

 

评论|共 95 个

jeonglee

发表于 2017-5-4 19:19:41 | 显示全部楼层

1111111111111111111111111111111111111111

wx_X32lt487

发表于 2017-5-8 01:03:11 | 显示全部楼层

割肉的割肉割肉割热热

yuhan429

发表于 2017-5-26 18:04:06 | 显示全部楼层

3333333333333

wvhui

发表于 2017-5-28 15:12:05 | 显示全部楼层


谢谢楼主分享

猫猫看看

发表于 2017-5-28 15:22:00 | 显示全部楼层


#property indicator_chart_window
#property indicator_buffers 4
#property indicator_color1 Red
#property indicator_color2 Lime
#property indicator_color3 Brown
#property indicator_color4 Olive
#property indicator_width1 5
#property indicator_width2 5

double TrendUp[], TrendDown[],dn[],up[];
int changeOfTrend;
extern int Nbr_Periods = 10;
extern double Multiplier = 3.0;
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int init()
  {
//---- indicators
   IndicatorBuffers(4);
   SetIndexBuffer(0, TrendUp);
   SetIndexStyle(0, DRAW_LINE, STYLE_SOLID, 5);
   SetIndexLabel(0, "Trend Up");
   SetIndexBuffer(1, TrendDown);
   SetIndexStyle(1, DRAW_LINE, STYLE_SOLID, 5);
   SetIndexLabel(1, "Trend Down");
   SetIndexBuffer(2, dn);
   SetIndexStyle(2, DRAW_LINE, STYLE_SOLID, 2);
   SetIndexLabel(2, "Up");
   SetIndexBuffer(3, up);
   SetIndexStyle(3, DRAW_LINE, STYLE_SOLID, 2);
   SetIndexLabel(3, "Dn");
//----
   return(0);
  }
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function                       |
//+------------------------------------------------------------------+
int deinit()
  {
//----
   
//----
   return(0);
  }
//+------------------------------------------------------------------+
//| Custom indicator iteration function                              |
//+------------------------------------------------------------------+
int start()
  {
   int limit, i, flag, flagh, trend[5000];
   double medianPrice, atr;
   int counted_bars = IndicatorCounted();
//---- check for possible errors
   if(counted_bars < 0) return(-1);
//---- last counted bar will be recounted
   if(counted_bars > 0) counted_bars--;
   limit=Bars-counted_bars;
   //Print(limit);
   
//----
   for (i = Bars; i >= 0; i--) {
      TrendUp[i] = EMPTY_VALUE;
      TrendDown[i] = EMPTY_VALUE;
      atr = iATR(NULL, 0, Nbr_Periods, i);
      //Print("atr: "+atr[i]);
      medianPrice = (High[i]+Low[i])/2;
      //Print("medianPrice: "+medianPrice[i]);
      up[i]=medianPrice+(Multiplier*atr);
      //Print("up: "+up[i]);
      dn[i]=medianPrice-(Multiplier*atr);
      //Print("dn: "+dn[i]);
      trend[i]=1;
   
      
      if (Close[i]>up[i+1]) {
         trend[i]=1;
         if (trend[i+1] == -1) changeOfTrend = 1;
         //Print("trend: "+trend[i]);
         
      }
      else if (Close[i]<dn[i+1]) {
         trend[i]=-1;
         if (trend[i+1] == 1) changeOfTrend = 1;
         //Print("trend: "+trend[i]);
      }
      else if (trend[i+1]==1) {
         trend[i]=1;
         changeOfTrend = 0;      
      }
      else if (trend[i+1]==-1) {
         trend[i]=-1;
         changeOfTrend = 0;
      }

      if (trend[i]<0 && trend[i+1]>0) {
         flag=1;
         //Print("flag: "+flag);
      }
      else {
         flag=0;
         //Print("flagh: "+flag);
      }
      
      if (trend[i]>0 && trend[i+1]<0) {
         flagh=1;
         //Print("flagh: "+flagh);
      }
      else {
         flagh=0;
         //Print("flagh: "+flagh);
      }
      
      if (trend[i]>0 && dn[i]<dn[i+1])
         dn[i]=dn[i+1];
      
      if (trend[i]<0 && up[i]>up[i+1])
         up[i]=up[i+1];
      
      if (flag==1)
         up[i]=medianPrice+(Multiplier*atr);
         
      if (flagh==1)
         dn[i]=medianPrice-(Multiplier*atr);
         
      //-- Draw the indicator
      if (trend[i]==1) {
         TrendUp[i]=dn[i];
         if (changeOfTrend == 1) {
            TrendUp[i+1] = TrendDown[i+1];
            changeOfTrend = 0;
         }
      }
      else if (trend[i]==-1) {
         TrendDown[i]=up[i];
         if (changeOfTrend == 1) {
            TrendDown[i+1] = TrendUp[i+1];
            changeOfTrend = 0;
         }
      }
   }
   WindowRedraw();
      
//----
   return(0);
  }
//+------------------------------------------------------------------+

蔚蓝星空

发表于 2017-6-1 09:04:42 | 显示全部楼层

路过看看路过看看路过看看路过看看

tzwmusic

发表于 2017-6-3 19:36:41 | 显示全部楼层

Indicators:
a). Simple Moving Average
Values:
5 Close and 100 close

c). Level stop Reverse
Values:
Use ATR mode True
Non-ATR stop pips 40
ATR Periods 28
ATR Multiplier 2.0
ATR Smoothing 0
D).QQE on 1min and 15 min time frames (3 indicators)
Values:
Smoothing Factor 60 (QQE 60)
Smoothing Factor 5 (QQE 5)
Smoothing Factor 1 (QQE 1)
E) MOM – Momentum
Value:
10 Close
F) Daily Pivot points at start times
Values:
Pivot set 1 = Daily (1=daily, 2=weekly, 3=monthly)
G) Trading Hours
Values:
3AM EST to 3PM EST only

How to spot a trade opportunity:
Buy/Sell signals:
After you get the two signals (Arrow & QQE 60 cross signal) you enter after the QQE5 or QQE1 cross the 50 line.
Only take the short trade if the signal generates below the Daily Pivot level.
Only take the Long trade if the signal generates above the daily pivot level.

Exit:
If QQE5 cross to the opposite direction you must exit the trade.

Re-enter:
You can re-enter a trade when QQE1 touch the 50 line and cross back towards the QQE60. When you get the proper entry set up, check for the 1hr momentum. If the 1hr momentum and 15 min Momentum on the new confirmation bar shows a very promising trend continuation (45 Degrees plus bent) you don’t have to wait until the 5 SMA touches to enter.

When the momentum shows a sharp bent on any given TF, it indicates a retracement is due to 5sma of that particular TF. I'm always hesitant to introduce the Momentum indicator, since on a trending market if the momentum changes to the opposite direction some traders blow their account by trying to catch the retracement. When ever you catch a retracement you are going against the trend. You only suppose to use it to find better entries to go with the trend

Stop Loss:
60 pips
SL is closet support or resistance around 60pips

Take profit:
100 pips

Applying Daily Pivots & 100sma to minimize the fake calls.

Long-
15 QQE60 crossed above the Daily Pivot (15 Min Timeframe Only)
Price is above the 100 sma & LevelStop-Reverse
I also use 1hr QQE5 to identify the trend direction



Applying Daily Pivots & 100sma to minimize the fake calls.

Short-
15 QQE60 crossed down Below the Daily Pivot (15 Min Timeframe Only)
Price is below the 100 sma & LevelStop-Reverse

cxxzx968

发表于 2017-6-5 20:09:51 | 显示全部楼层

看看。。。。。。。。

kingstar616

发表于 2017-6-9 14:11:13 | 显示全部楼层

Lucky 5 Russain forex system

我的天007

发表于 2017-7-2 00:19:04 | 显示全部楼层

11111111111111

您需要登录后才可以回帖 登录 | 注册 微信登录

EA之家评论守则