Jump to content
Medved Trader Forums

Nin Kiga

Members
  • Posts

    2
  • Joined

  • Last visited

Reputation

0 Neutral
  1. Yes, I added it to a chart. It does paint the chart correctly in places where ADX > 30. The difficulty is when I scan a portfolio. The table generated returns ADX > 30 for symbols that do not currently meet the criteria. For example AAXN in the attached images (ADX is light blue, DMI- is red and DMI+ is green). I would like to scan a portfolio and then only open charts for those symbols currently meeting the requirement of ADX>30.
  2. I want to scan for ADX(14) > 30. This is my scan: if (ADX_ADX > 30) { SetColorAndShape(SysColor.SepIndicator5, PBShape.ArrowSE); TriggerAlert("ADX Alert", @"ADX > 30"); SetScanResult(@"ADX > 30"); return; } else { SetColor(SysColor.MainIndicator12); SetScanResult(@"No Trade"); return; } However, the scan results appear to be returning results for ADX>30 or DMI+>30 or DMI- > 30. I just want results for ADX>30. Do I need to perform an advanced scan to accomplish this?
×
×
  • Create New...