Jump to content
Medved Trader Forums

CryptoDips

Members
  • Posts

    79
  • Joined

  • Last visited

Everything posted by CryptoDips

  1. hmm, What is 0 UTC??? Is there a way to get the change % of symbol since i turned on Medved or for a certain period of time??? What is DayRangePercent for???
  2. ok so when I added this SymbolData.DayRangePercent > 10 it didnt scan symbols that are up 10% in 24hrs What happened?
  3. great thanks, that may work better because change percent is the current change from 1 candle progression correct?
  4. Hello, Is there anyone here... none of the questions are being answered???? 1. How do I get the top gainers from Binance list to be the same on Medved... 2. I wanted to only get the symbols with 5% > change% && MFI < 20.00. How would I code that???
  5. ok so if I wanted to only get the symbols with 5% > change% && MFI < 20.00. How would I code that???
  6. Hello, What does the CHG% represent is it the 24hr or what time frame does this represent???
  7. 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???
  8. Hello, Is there a way to scan if a symbol is going up meaning up 5 or so % from the previous %, or percent change in a certain period?
  9. Hello, I have noticed the indicator numbers on binance vs. Medved trader are off buy about 10 I am using EMA14 and EMA34 Volume - lower in binance Macd (12,26,9) - MFI (14,1) - lower in binance
  10. (MACD_histogram changes from < 0 to > 0) meaning i want the scanner to shoe symbols when macd hashes change from red to green only
  11. Hello, How will i make a scan that will look if: SymbolData.Volume > 100000 && MFI_line < 20 && (MACD_histogram changes from < 0 to > 0)
  12. ok i figured it out now, because its not a var i can add from selection
  13. how do i get the volume of a symbol not the bar?
  14. 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; } }
  15. thanks, what variables should i use for this script???
  16. OK, Great so how would I create scan to look for a new low for a symbol in Basic and Advanced Scan???
  17. 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???
  18. how do I run as a paintbar???? Also how do i create a scan where it compares new 24hr highs or lows for a symbol???
  19. is this correct, I took a stab and tried it: public void MainCalculation() { if (MFI_Main < 20.00 && MACD_Main > 0.00000000 && Volume_Bar >= 100000) { SetScanResult("Positive") ; } }
  20. ok can you create an advanced scan that will: 1. scan for volume over 100,000 2. scan for MFI under 20 3. scan for MACD over 0.000000 scan must meet all 3 criteria to output... also is there a way for user to get an email or sms when there is an alert???
  21. LOL, we are talking about the hashes and i believe I specifically said hashes. Yes. on the MACD hashes you have green, red, filled in green and filled in red
×
×
  • Create New...