DMI/ADX consistently works

Discussion in 'Technical Analysis' started by nyc-hotshot, Aug 22, 2003.

  1. okwon

    okwon

    How about the stops? How far will you let the position go against you before you get out?
     
    #21     Aug 23, 2003
  2. NYC,

    In TradeStation the DMI indicator has DMI+ amd DMI- listed. Am I correct in the following:

    PDI = DMI+ (would be plotted in red)
    MDI = DMI- (would be plotted in green)

    Thanks.
     
    #22     Aug 23, 2003
  3. I must be confused. Here is a 5M chart of the ES.

    DMI settings are: Length 15, Trend 25

    White line moves above both lines. Red on bottom on both of these set ups. This is a sell right??

    Price moved up both times. I have something discomboobaloated.
     
    • dmi.png
      File size:
      65 KB
      Views:
      4,204
    #23     Aug 23, 2003
  4. savage

    savage


    I think you have your red and green switched.
     
    #24     Aug 23, 2003
  5. Okay. Can you confirm this NYC?

    Savage - What does his PDI and MDI stand for then.
     
    #25     Aug 23, 2003
  6. taiko50

    taiko50

    Hello VisionTrader,

    I guess P stands for Plus (+), and M stands for Minus (-). He switched colors so that the bottom line indicates if he either should buy (green) or sell (red).

    Not sure about the settings, I use SierraChart and I can setup ADX with DX Length and DX Mov Average Length, and I can setup DMI with Length...?? Is then everything set to 15?
     
    #26     Aug 23, 2003
  7. WarEagle

    WarEagle Moderator

    For those of you with TradeStation, here is a PaintBar that will plot the bar red when the sell signal is in effect and blue when the buy signal is in effect. Just be aware that it plots any occurance of ADX > the DM's and not just on a new cross, so not all plots would be valid trade signals. But it does make it easier to find the entries visually.

    Inputs: Length(15);

    Condition1 = ADX(Length) > DMIPlus(Length) and DMIPlus(Length) > DMIMinus(Length);
    Condition2 = ADX(Length) > DMIMinus(Length) and DMIMinus(Length) > DMIPlus(Length);

    If Condition1 OR Condition2 Then Begin

    value1 = high;
    value2 = low;

    PlotPaintBar(value1, value2, "PaintBar");

    If Condition1 Then
    SetPlotColor(1, Blue)
    Else
    If Condition2 Then
    SetPlotColor(1, Red);
    End;
     
    #27     Aug 23, 2003
  8. dbphoenix

    dbphoenix

    Is this supposed to be July 17th?
     
    #28     Aug 23, 2003
  9. Ken_DTU

    Ken_DTU

    #29     Aug 23, 2003
  10. I'll have my programmers automate nyc-hotshot's DMI/ADX technique and see if it really works consistently. I will advise this thread on the out come.
     
    #30     Aug 24, 2003