Jump to content
Medved Trader Forums

hallo1832

Members
  • Posts

    7
  • Joined

  • Last visited

Reputation

0 Neutral

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Maybe I found my mistake. In Frequency I entered 0.1 Min instead if 1 Min. I will check and let you know.
  2. Just now it alerted $SCO , not even the mimimum volume bar of 40000 was observed.
  3. I edited the scan to see the recent parameters within the code and to exclude errors: False alerts: 11:43 $KIQ 11:45 $CLEU public void MainCalculation() { if (RVOL_Line > 7000 && Volume_Bar > Volume_Bar[1] && Volume_Bar >= 40000 && SymbolData.Last > Close[1] * 1+(50/100) && SymbolData.VolumePercent > 20) { SetColorAndShape("Vol Up", PBShape.ArrowUp_Hollow, SysColor.VolumeUp); TriggerAlert("Vol Up"); SetScanResult(100); } }
  4. Done yesterday. it seems that the system alerts when a condition was met at some point in time. For example, if relative volume crossed 5k 4 days before, volume bar reached 100k three days ago and the price just went up this minute. Then the alerted triggers. But I want everything to be related to the current candle. Thanks for your help Jerry!
  5. yes I do. But the problem is also with this line "if (RVOL_Line.CrossesUp(10000, 0)" which should trigger when the relative volume crosses 10000 as far as I understand. I just didnĀ“t define the parameters for that line yet.
  6. Thanks, I think I got the price gain thing right. However, I have a little other problem. I want the alert to trigger only when the relative volume line exceeds a value of 10000. However, today's test triggered various alerts that were much less than this value. Attached is my code.
  7. Hello, as the title says I want to add the condition X percentage price gain from the last candle to the existing scanner Unusual Volume. Thanks for your help!
×
×
  • Create New...