Disliked{quote} The buffer 0 is Negative Velocity (labeled as DnSpeed) and buffer 1 is Positive Velocity (labeled as UpSpeed). They will be both zero if the market is quiet. /MattIgnored
1
How To Calculate Swap And Forward Points - Newbie Here 3 replies
Best Reliable Sources for Daily Support and Resistance points. 2 replies
Piviot Points 18 replies
For those of you who trade pivot points 30 replies
Trading with Pivot Points 15 replies
Disliked{quote} The buffer 0 is Negative Velocity (labeled as DnSpeed) and buffer 1 is Positive Velocity (labeled as UpSpeed). They will be both zero if the market is quiet. /MattIgnored
Disliked{quote} The buffer 0 is Negative Velocity (labeled as DnSpeed) and buffer 1 is Positive Velocity (labeled as UpSpeed). They will be both zero if the market is quiet. /MattIgnored
Disliked{quote} MathTrader, can you please check the indicator code again? 2020.10.20 21:27:09.483 MathTrader7_SpeedometerIN EURUSD,M1: cannot set millisecond timer (100) Regarding the buffers and iCustom, I still do not get the correct data sadly. Is shift 1 like below correct to get values for bar 0 ? iCustom (....., "buffer", 1) Thanks again.Ignored
Disliked{quote} I am already imagining some crazy ways to add this to my scalping strategy..hehehe. I just love the graphic meter. What would make it even more mindblowing though, would be to track the highest speeds achieved after every bar close and display it on or below the bar, AND THEN MAKE SPEED BARS, COLOR EACH BAR ACCORDING TO ITS HIGHEST SPEED(+ve/-ve)... {image}Ignored
Disliked{quote} Hi PipsTorrent, The error has nothing to do with my code. It simply means that the computer that the indicator is running on is not able to handle fast execution of timers. You are probably running it on a VPS with limited resources (CPU/RAM, etc.). You should peridically read the buffer number 0 and save the results in a Ring Buffer and then process the data while you are capturing it. It needs a fast computer, though. /MattIgnored
Disliked{quote} Hey MathTrader7, Would you be able to release a new version to allow saving the data to a csv file or something similar or a way to export that? I am doing research on this and have no way to save the data from the speedometer. The format for the data can be: time, OHCL, speed #, acceleration #. I would be most grateful if you can make that happen.Ignored
Disliked{quote} You're absolutely right! However, it is known that LiteForex quotes are delayed (and may be manipulated somehow). The best brokers for this type of indicators are true ECN brokers.Ignored
while ( ! EventSetTimer(10) ) { if ( IsStopped() ) return(INIT_FAILED); Sleep(5); }
DislikedHi Matt, To help with the "can't set event timer" issue I use the following ( taken from OnInit() event ). Since adding this I haven't seen the error, usually occurring on VPN sessions as you mentioned earlier. while ( ! EventSetTimer(10) ) { if ( IsStopped() ) return(INIT_FAILED); Sleep(5); } Regards, PaulIgnored
DislikedCreative ideas move the world Hello Math, First of all, my compliments on this excellent idea. I have been running the indicator in combination with the future data for the past few months and the results are very interesting. As you know, the DoM and the T&S list run from top to bottom. The speedometer (points/sec) runs from left to right. {image} As I would never publish the source code if I were you, I have a request. Is there a representation of the speedometer (points/sec) that runs from top to bottom or perhaps an indicator that simply turns...Ignored