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;
   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 = EMPTY_VALUE;
      TrendDown = EMPTY_VALUE;
      atr = iATR(NULL, 0, Nbr_Periods, i);
      //Print("atr: "+atr);
      medianPrice = (High+Low)/2;
      //Print("medianPrice: "+medianPrice);
      up=medianPrice+(Multiplier*atr);
      //Print("up: "+up);
      dn=medianPrice-(Multiplier*atr);
      //Print("dn: "+dn);
      trend=1;
   
      
      if (Close>up) {
         trend=1;
         if (trend == -1) changeOfTrend = 1;
         //Print("trend: "+trend);
         
      }
      else if (Close<dn) {
         trend=-1;
         if (trend == 1) changeOfTrend = 1;
         //Print("trend: "+trend);
      }
      else if (trend==1) {
         trend=1;
         changeOfTrend = 0;      
      }
      else if (trend==-1) {
         trend=-1;
         changeOfTrend = 0;
      }

      if (trend<0 && trend>0) {
         flag=1;
         //Print("flag: "+flag);
      }
      else {
         flag=0;
         //Print("flagh: "+flag);
      }
      
      if (trend>0 && trend<0) {
         flagh=1;
         //Print("flagh: "+flagh);
      }
      else {
         flagh=0;
         //Print("flagh: "+flagh);
      }
      
      if (trend>0 && dn<dn)
         dn=dn;
      
      if (trend<0 && up>up)
         up=up;
      
      if (flag==1)
         up=medianPrice+(Multiplier*atr);
         
      if (flagh==1)
         dn=medianPrice-(Multiplier*atr);
         
      //-- Draw the indicator
      if (trend==1) {
         TrendUp=dn;
         if (changeOfTrend == 1) {
            TrendUp = TrendDown;
            changeOfTrend = 0;
         }
      }
      else if (trend==-1) {
         TrendDown=up;
         if (changeOfTrend == 1) {
            TrendDown = TrendUp;
            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
页: 1 2 3 [4] 5 6 7 8 9 10 11
查看完整版本: Lucky 5 Russain forex system