Jump to content
Medved Trader Forums

CryptoDips

Members
  • Posts

    79
  • Joined

  • Last visited

Posts posted by CryptoDips

  1. ok thanks but, why did you put 1.05???
    Sorry, i see 1.05 is the % change...
    so if i wanted the 5min chart it would be
    if (Close>=Close[300]*1.05)
    or if i wanted to see if a symbol changes from 1 close candle to the open of another:
    if (Close>=Open[300]*1.05) 
    is there anyway to scan if the next candle is green or red???

     

  2. hello is there a way to scan and check when a candle goes from red to green???

    I am trying to find when a symbol dips down to its low points before it starts to go up...
    I have so far, but this only catches the symbol at its lowest point. I am trying to catch it when it's going up so when the MACD > 0.0 also???
    So how can I scan for these parameters and then show when MACD > 0 which usually comes after...

    public void MainCalculation()
         { if (Volume_Bar > 500 && (RSI_Line <= 30 || MFI_Line <= 20) && EMA_Line13 < EMA_Line34)
              { SetColor("Buy NOW!", SysColor.Positive);
         SetScanResult("Buy NOW!");
    return; } }

  3. 1. For daily high, use SymbolData.High,  for low SymbolData.Low
    But how will I get the scanner to look for a new LOW or HIGH, won't I have to compare it to something please give example... thanks

    2. Also if I want to only scan symbols with a certain volume which volume would i use the SymbolData.Volume???

×
×
  • Create New...