Jump to content
Medved Trader Forums

CryptoDips

Members
  • Posts

    79
  • Joined

  • Last visited

Posts posted by CryptoDips

  1. hmm, is there a way you can add something that stays up while in a position.
    so as more candles are made it will show as you roll over the candles...
    I do a lot of scalping so I'm only trying to get 3-5% or so in a trade. so let's say I draw my buyin line in green, and I want to know when the symbol hits a certain % then I can be aware...

  2. OK so basically what this code is doing is scanning for the last low on the chart and then checking to see if the current candle is X% above that???
    Please explain if I am wrong, because I have been trying to do something similar for Crypto for Binance:

    if (SymbolData.Volume > 100000 && Open > Close[2] && (MFI_Line[2] <= 20 || RSI_Line[2] <= 35))
    I trade Dips only with Crypto.
    1. Is there a way to scan for Red or Green candles??? Because (Open > Close[2]) could also be 3 red candles.

  3. Hello,
    Is this canyon chart ready now...
    It is more difficult to use MedVed for Crypto now... 
    on Binance they have a % you can buy in 25/50/75/100 it is very useful so I don't have to spend a lot of time converting the sats. and doing the math on the fly. So, for now, I don't really use MT for trading just for the scanner and charting... I would also like to request that you guys have more flexible alerts for different indicators besides price. I am more of a momentum trader and I need alerts for MFI / RSI / Volume so I can be alerted when certain levels are reached...
    So, it would be GREAT if you have an MT Crypto edition so it would cater more to crypto instead of traditional stocks...

  4. oh yeah, and I am using the Heikin-Ashi candles. with the 5min charts
    I wish I can just use MT but the indicators are not always correct and for this strategy, i need them to be correct so I can know when to get in and get out.
    SCAN RULE:
     

    public void MainCalculation()
    {
        if (SymbolData.Volume > 1000000 && MFI_Line < 20)
        {
            SetColor("MFI Down", SysColor.MainIndicator2);
            TriggerAlert();
            SetScanResult("MFI Down");
            return;
        }

    }

    or I will use this to see when MFI crosses 20

    public void MainCalculation()
    {
        if (SymbolData.Volume > 1000000 && MFI_Line.CrossesUp(20, 0))
        {
            SetColor("MFI Down", SysColor.MainIndicator2);
            TriggerAlert();
            SetScanResult("MFI Down");
            return;
        }

    }

  5. I have noticed that the MFI which I mainly use the most
    I use 
    RSI 14/70/30
    MFI 14/80/20
    Volume 10
    EMA  13
    EMA  34

    What I am scanning for is MFI < 20 so i can buy in when candles go from a series of red to green and volume is above the MA line and MFI < 20.
    I SELL when RSI >= 80 and starting to go down or red candle forming... 
    It is difficult because sometimes MT is off and it says MFI < 20 but it is really not on Tradingview and Binance
    are these settings the right combination???

  6. ok great that worked...
    I have another question..
    I use Tradingview also and I am trying to figure out why your readings are so different sometimes...
    I have MT scanning for symbols that are RSI < 20 an in Tradingview its the exact opposite. I am trying to figure out which one of you are correct???
     

×
×
  • Create New...