• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 10:04am
  • Search
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 10:04am
Search
Sister Sites
  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Options

Search
Search
Search

Bookmark Thread

First Page First Unread Last Page Last Post

Printable Version

Similar Threads

indicator lines move when scrolling???? 0 replies

  • Platform Tech
  • /
  • Reply to Thread
  • Subscribe
  • 13
Attachments: 'Room to move' indicator
Exit Attachments

'Room to move' indicator

  • Last Post
  •  
  • 1 2 Page 3
  • 1 2 Page 3
  •  
  • Post #41
  • Quote
  • Aug 8, 2017 10:01pm Aug 8, 2017 10:01pm
  •  ShuffleKing
  • | Joined Feb 2017 | Status: Member | 77 Posts
I appreciate you getting back to me. I understand not wanting to get tied up in another project. May the trend go with you.
  • Post #42
  • Quote
  • Jan 22, 2019 2:54pm Jan 22, 2019 2:54pm
  •  Gauer
  • | Joined Oct 2017 | Status: Member | 320 Posts
Given that hanover left the forum and won't be updating this indi, is anyone willing to update this indi?

This is a very good indicator, however it would be even better if we could offset the start of the 24h calculation. Because this uses the daily open and close for it's calculation right? And each broker has it's own server time and daily candles open and closes...

What I would like to do is be able to set this indicator to start it's calculation at the NY open, so I would have fresh dynamic levels starting every day at 09:30 AM eastern time.
  • Post #43
  • Quote
  • Jan 23, 2019 5:00am Jan 23, 2019 5:00am
  •  Gauer
  • | Joined Oct 2017 | Status: Member | 320 Posts
Thanks for updating the indi, David!

All the best!
  • Post #44
  • Quote
  • Sep 16, 2019 3:57pm Sep 16, 2019 3:57pm
  •  Gauer
  • | Joined Oct 2017 | Status: Member | 320 Posts
Quoting hanover
Disliked
{quote} Many thanks for your offer. Although I'm always happy to look at new profitable ways to trade, I don't use a lot of indicators in my own trading these days. I'm currently attending two different training courses, and also working on an EA. Hence I don't have a lot of time to look at any other programming work until September. Alerts for Room Up/Down is not necessarily a straightforward process. Firstly, price can touch the same price level several times during the day, and secondly, the levels move around whenever price makes a new high/low....
Ignored

Hi there David, if you ever touch this code again, please add an option to choose the color of the vertical line, because it is hard coded in white. If using white background we canīt see it.


Cheers

  • Post #45
  • Quote
  • Edited at 6:18pm Sep 16, 2019 5:05pm | Edited at 6:18pm
  •  Mini7260
  • | Joined Aug 2009 | Status: Member | 39 Posts
Never mind.
  • Post #46
  • Quote
  • Sep 20, 2019 1:54pm Sep 20, 2019 1:54pm
  •  Gauer
  • | Joined Oct 2017 | Status: Member | 320 Posts
Just to complement my last post:

If you ever touch this code again, not only add an option to choose the color of the vertical line, but also an option to use average weekly and monthly range. As of now it is hard coded to daily bars only.

Thanks!
  • Post #47
  • Quote
  • Edited at 6:47pm Sep 20, 2019 6:18pm | Edited at 6:47pm
  •  hanover
  • Joined Sep 2006 | Status: ... | 7,798 Posts
Quoting Gauer
Disliked
please add an option to choose the color of the vertical line
Ignored
Color, width, style can all be set using PlotVerticalLine setting. See post #1.

Quoting Gauer
Disliked
an option to use average weekly and monthly range.
Ignored
Sorry, but I'm not planning to implement anything like this at this point (a suitably calibrated oscillator, or weekly/monthly pivot levels, are arguably a decent proxy for 'overbought/oversold'). MQ4 source code can be downloaded from post #1 if anybody wants to modify the indicator.
I have left FF. Please don't expect replies to your posts.
1
  • Post #48
  • Quote
  • Oct 5, 2019 3:44pm Oct 5, 2019 3:44pm
  •  Scorp1on1
  • | Joined Nov 2018 | Status: Member | 44 Posts
Just want to thank Hanover...very useful indicator...All your works are greatly useful. Is there a way to make it shows History levels on the same chart for previous days . I see it already can change the day to check its level. But it will be great for backtesting if it shows levels for all previous days in the same time. I understand how busy you could be and I greatly appreciate it if you can add that.

May all green pips be ours
  • Post #49
  • Quote
  • Oct 5, 2019 11:43pm Oct 5, 2019 11:43pm
  •  pips4life
  • Joined Apr 2007 | Status: Member | 672 Posts
5 completely trivial changes to the mq4 in post#1, including pointing to my b600 version of hanover's include files, make it compile without errors or warnings using the latest MT4.

DOES IT WORK?? It seems to draw lines on the chart the same as the 509 .exe, but it's the weekend so I can't be completely sure, but looks like it does.

Fyi, this doesn't work with the StrategyTester (likely because it accesses data from other timeframes, which doesn't work in the Tester).

Download the two b600 files from post#1 here. Or, these links seem to work:
hanover --- function header b600 (np).mqh
hanover --- extensible functions b600 (np).mqh
Put them into your MQL4\Include\ folder.

I don't use this RoomUpDown indicator myself -- not my style.

Neither am I taking on the task of converting or maintaining hanover's indicators. I'm merely pointing out that some of them can be easily compiled with the latest MT4 just by pointing to my b600 versions of his libraries, *plus* often some very simple edits to fix any warnings or errors. Sometimes he uses newly controlled keywords (like "char"), or variables with a "." in the middle (like "abc.1"). Just *rename* them! "char" can be "s_char" or whatever. The "abc.1" can be "abc_1". Not hard, right?!

To get hanover's b509 version of this code to compile with the latest MT4, I :
* Changed the "<hanover --- function header (np).mqh>" to use "<hanover --- function header b600 (np).mqh>"
* Changed the "<hanover --- extensible functions (np).mqh>" to use "<hanover --- extensible functions b600 (np).mqh>"
* removed the global int "bar" definition because it wasn't used here anyway. It prevents a warning that the same name "bar" in the include file is hidden. Had "bar" been used, I would have just renamed it everywhere in this file to "gbar" or whatever I feel like naming it.
* In two places where there are "void functionName(...) { ... ; return(0); }", it complains that "return" has the unexpected return of a value. Just use "return;".
* I changed the vertical "White" line default to "DarkGray"... because I use White charts, and DarkGray works on both Black or White. User can control via Input var, or edit and recompile as you see fit.
Attached File
File Type: mq4 RoomUpDown b600.mq4   8 KB | 91 downloads
  • Post #50
  • Quote
  • Edited at 8:22pm Oct 6, 2019 12:54am | Edited at 8:22pm
  •  hanover
  • Joined Sep 2006 | Status: ... | 7,798 Posts
Just visiting (courtesy of a 'Get out of Jail Free' card).

Quoting Scorp1on1
Disliked
Is there a way to make it shows History levels on the same chart for previous days . I see it already can change the day to check its level. But it will be great for backtesting if it shows levels for all previous days in the same time.
Ignored
This indicator doesn't seem to replot itself during a backtest in MT4 Tester. I have no idea how Tester works**, and since I don't use it, there's no reason for me to investigate why. The MQ4 source is available if anybody wants to modify the indicator.

Alternatively, you could use other tools like oscillators, ATR-calibrated envelopes, or pivot levels, that meet your perception of 'overbought' and 'oversold'. (The more random price movement is, the less difference there is between the predictive quality of different tools, or the way that they're 'optimized').

**[EDIT]
Quoting pips4life
Disliked
this doesn't work with the StrategyTester (likely because it accesses data from other timeframes, which doesn't work in the Tester).
Ignored
Yes, that makes good sense! Many thanks for the explanation, and for all of your hard work.
I have left FF. Please don't expect replies to your posts.
1
  • Post #51
  • Quote
  • Oct 6, 2019 11:19am Oct 6, 2019 11:19am
  •  Scorp1on1
  • | Joined Nov 2018 | Status: Member | 44 Posts
Quoting hanover
Disliked
Just visiting (courtesy of a 'Get out of Jail Free' card). {quote} This indicator doesn't seem to replot itself during a backtest in MT4 Tester. I have no idea how Tester works**, and since I don't use it, there's no reason for me to investigate why. The MQ4 source is available if anybody wants to modify the indicator.
Ignored
Thanks a million Hanover for sharing this indicator...You are a Great icon in here!!

Hopefully, another coder can help me to make the indicator just shows historic levels of previous days on chart.
I am very optimistic that there is great help and generous coders in here!!
  • Post #52
  • Quote
  • Oct 7, 2019 11:37pm Oct 7, 2019 11:37pm
  •  Scorp1on1
  • | Joined Nov 2018 | Status: Member | 44 Posts
I am not a coder..so Excuse my question..is the previous request is difficult to code? Or too much of hassle?

Thank you!
  • Post #53
  • Quote
  • Oct 10, 2019 12:57pm Oct 10, 2019 12:57pm
  •  Quants
  • Joined May 2015 | Status: ... | 316 Posts
Quoting hanover
Disliked
Just visiting (courtesy of a 'Get out of Jail Free' card). {quote} This indicator doesn't seem to replot itself during a backtest in MT4 Tester. I have no idea how Tester works**, and since I don't use it, there's no reason for me to investigate why. The MQ4 source is available if anybody wants to modify the indicator. Alternatively, you could use other tools like oscillators, ATR-calibrated envelopes, or pivot levels, that meet your perception of 'overbought' and 'oversold'. (The more random price movement is, the less difference there...
Ignored
Dear Hanover,
I am sorry to writing from here to you but i have lost your e mail we have spoken very long time ago.. I require small help from your side. In one of your posts you have said that you have an indicator where it downloads the upcoming news and actually showing the average of movement for the spesific event. That is very useful information for me right at this moment. Is there any chance that i can get my hands on that indicator or the way you found this information ?
Looking further for your reply.
Thank you
Im not going to beg anyone to make money for them
1
  • Post #54
  • Quote
  • Oct 10, 2019 4:39pm Oct 10, 2019 4:39pm
  •  hanover
  • Joined Sep 2006 | Status: ... | 7,798 Posts
Quoting Quants
Disliked
In one of your posts you have said that you have an indicator where it downloads the upcoming news and actually showing the average of movement for the spesific event. That is very useful information for me right at this moment. Is there any chance that i can get my hands on that indicator or the way you found this information ?
Ignored
The latest Plot News software is available here (read the provisos carefully!), but I think you might be referring to this indicator.

Also, there is a lot of info in this thread, do a FF search for 'NCI' to obtain an explanation of what it does, and how it works. You might also need to download some of the files there.

If I recall correctly, there was a bug in the NCI export part of Clarion PlotNews EXE code, but I can't remember what it was now. I don't think I ever fixed it, because at the time nobody showed any interest in the project. Also, it was written more than 10 years ago, and it's highly possible that it won't run on the latest 64 bit Windows. And it calls wget.exe to scrape the FF calendar webpage, and wget no longer works in the way as it did....... but please feel welcome to give it a try.

Regarding "the way I found this info", the Plot News downloader is the only news app that I'm aware of that actually reads the HTML version of the FF calendar, allowing it to access historical news events/outcomes back to 2007. More info here** here and here. The Clarion version of the downloader (version 3; latest update here) was the predecessor of the latest Autohotkey version (version 4; which FF alleges contains a virus).

[** note: this info is out of date in that the latest version of the downloader now scrapes the data from FF calendar URL using native Autohotkey code, rather than calling curl].

I'm afraid you're on your own, as I don't want to spend any time on this project or answering any questions. I haven't looked at NCI for many years, hence any refamiliarization process would be time consuming, and none of this is useful to me personally.
I have left FF. Please don't expect replies to your posts.
1
  • Post #55
  • Quote
  • Oct 12, 2019 9:27am Oct 12, 2019 9:27am
  •  Quants
  • Joined May 2015 | Status: ... | 316 Posts
Quoting hanover
Disliked
{quote} The latest Plot News software is available here (read the provisos carefully!), but I think you might be referring to this indicator. Also, there is a lot of info in this thread, do a FF search for 'NCI' to obtain an explanation of what it does, and how it works. You might also need to
Ignored
So greatful for your reply. Thanks a lot!
Im not going to beg anyone to make money for them
  • Post #56
  • Quote
  • Oct 12, 2019 1:28pm Oct 12, 2019 1:28pm
  •  wansiman
  • | Joined Jul 2010 | Status: Member | 83 Posts
Shitty coding.
Attached Image (click to enlarge)
Click to Enlarge

Name: 372994229bf003cc154d6531d2f4e785.png
Size: 84 KB
  • Post #57
  • Quote
  • Last Post: Edited at 4:42pm Oct 12, 2019 3:10pm | Edited at 4:42pm
  •  hanover
  • Joined Sep 2006 | Status: ... | 7,798 Posts
Quoting wansiman
Disliked
Shitty coding.
Ignored
Worked perfectly for me (compiled with 0 errors at the first attempt). See screenshot.

Did you follow pips4life's instructions correctly?
Quoting pips4life
Disliked
Download the two b600 files from post#1 here. Or, these links seem to work: hanover --- function header b600 (np).mqh hanover --- extensible functions b600 (np).mqh
Ignored
Or if this doesn't work on your computer, you could simply delete the mq4 file and download the ex4 file from post #1. Both versions of the indicator should deliver an identical result.
Attached Image (click to enlarge)
Click to Enlarge

Name: PPI 219.png
Size: 54 KB
I have left FF. Please don't expect replies to your posts.
1
Thread Tools Search this Thread
Show Printable Version Show Printable Version
Email This Thread Email This Thread
Search this Thread:

Advanced Search

  • Platform Tech
  • /
  • 'Room to move' indicator
  • Reply to Thread
    • 1 2 Page 3
    • 1 2 Page 3
0 traders viewing now
Top of Page
  • Facebook
  • Twitter
About FF
  • Mission
  • Products
  • User Guide
  • Media Kit
  • Blog
  • Contact
FF Products
  • Forums
  • Trades
  • Calendar
  • News
  • Market
  • Brokers
  • Trade Explorer
FF Website
  • Homepage
  • Search
  • Members
  • Report a Bug
Follow FF
  • Facebook
  • Twitter

FF Sister Sites:

  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Forex Factory® is a brand of Fair Economy, Inc.

Terms of Service / ©2019