Jump to content
Medved Trader Forums

CryptoDips

Members
  • Posts

    79
  • Joined

  • Last visited

Everything posted by CryptoDips

  1. OK yes, i am having the same problem with MT using Binance... Please let us know when the fix is ready...
  2. 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...
  3. that's one of the reasons I like trading view because of its ability for me to measure percentages, profit loss, and I get alerts on my phone also... These are very helpful indeed... But they dont have 5min scanner yet. Which MT does.
  4. Is there a way to show percentage on the charts also to know the percentage from 1 candle to the other???
  5. has this been implemented on the new update??? "HA" toggle button next to the "Intraday" and "Historical" buttons on the Scanner tab. That way your scan will work on HA candles.
  6. yes most crypto drop down to MFI < 20 and then I am trying to enter on the way up, it will show a green candle. I am scalping so I only need to achieve 3 - 5% is my goal.
  7. well, i need to check for the red to green candles for HA, that's my entry point...
  8. But if I change the candles to HA, how can I scan for red and green then???
  9. ok it is correct, I had the candles changed to HA, thanks
  10. actually how can I create a scan that will show MFI < 20 && (current candle is green but previous candle was red)
  11. How can i scan for symbols that have 2 or 3 last green candles?
  12. yes I have already unchecked "Use Williams' Smoothing"...
  13. I am also trying to figure out why are some of the charts indicators like RSI and MFI so different from MT and tradingview???
  14. 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.
  15. I was wondering also is there a way to scan if the candle is green or red???
  16. lol yes i know how to do a scan alert, but i need to know how to do a alert for an individual symbol after it has been scanned...
  17. 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...
  18. yes I am on the east coast also FL 1. Do you know how to set an alert for MFI or any indicator or is there only alarms for prices???
  19. 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; } }
  20. ok so I changed to these setings RSI 13/70/30MFI 13/80/20Volume 13EMA 13EMA 34 should all the moving averages be the same correct???
  21. 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???
  22. 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???
  23. Hello, I have my news alerts set up correctly and i see the alerts but when I try to view the news articles nothing is showing for Yahoo or Google. How do I fix this?
×
×
  • Create New...