Jump to content
Medved Trader Forums

News doesnt work


CryptoDips

Recommended Posts

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???
 

Link to comment
Share on other sites

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???

Link to comment
Share on other sites

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;
    }

}

Edited by CryptoDips
Link to comment
Share on other sites

47 minutes ago, CryptoDips said:


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???
 

Last time I was on StockCharts and TDAmeritrade I checked some of the indicators in MT using the same settings and time frame.  I found them all close to each other, but not exact.  I don't use Tradingview, but did look at it and couldn't get it to show the current RSI of a stock to compare numbers.

Link to comment
Share on other sites

2 hours ago, Mike Medved said:

Crypto, the parameters for MFI have to be same to compare it correctly. I will go to TradingView and try to compare their MFI to ours. Will report what I find.

This is what my MFI looks like.  It doesn't look anything like the other charting programs or sites. I don't use it so it's about the first time I've seen it in MT.

ScreenHunter_03 Jan. 11 21.42.jpg

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...