- Search Metals Mine
- zznbrm replied Oct 23, 2010
duffypratt, Here is a screenshot of a script I created a while ago. It displays a bunch of info. The last 6 columns display the average pip range for the given time ranges over the past 20 days. It is hard-coded for my New York time broker. If this ...
ATR for specific hours?
- zznbrm replied Oct 19, 2010
EAs most certainly work on offline charts. The indicator/script/EA that creates the offline chart needs a few extra lines of code to enable this functionality. Check with the author of your Renko script to enable this functionality.
Goldflight's RENKO strategy
- zznbrm replied Oct 17, 2010
This is why you always drill down to a smaller timeframe when you get a really long candle so you can more accurately determine what actually happened. Yes, of course backtesting has flaws. However, with the proper mechanisms, these flaws can be ...
Nanningbob 4h trading system ver. 5.0
- zznbrm replied Oct 16, 2010
Well I guess I do not understand the system then, because at the time of your entries the TMA values (your signal to trade) were nowhere near the values you are displaying. As an "outsider" to this system, I must be incorrect in my interpretation ...
Nanningbob 4h trading system ver. 5.0
- zznbrm replied Oct 16, 2010
McKeen, Thanks for sharing your backtester. I created a similar visual backtester for the new 6.0 system on this thread (well, from the information I could gather so far). It includes the TMA and MAs per recent posts by nanningbob. I do not use ...
Nanningbob 4h trading system ver. 5.0
- zznbrm replied Oct 10, 2010
Based upon these high-level requirements, there is nothing here that cannot be done with MQL4. With what you have described, there would be no better solution than to create an EA using MQL4. My advice to you is the same advice I have for everyone ...
EXCEL Trading
- zznbrm replied Sep 30, 2010
Last parameter defaults to 0. From this statement: "What I am trying to do is to compare the current time to a certain time back in the past and see if the low has crossed a certain level." I took it to mean you only interested in the current time ...
Simple Question about For Loops
- zznbrm replied Sep 30, 2010
Maybe something like this: double x = 1.30000; bool baroverx = false; datetime backtime = StrToTime( "05:30" ); int backshift = iBarShift( Symbol(), Period(), backtime ); double low = Low[iLowest(NULL,0,MODE_LOW,backshift+1)]; if(low > x) { baroverx ...
Simple Question about For Loops
- zznbrm replied Sep 30, 2010
Two reasons: 1) During the initial development of the BasketChartScript, I had no need for the D1 and above timeframes. 2) There are some complexities with time conversion (DST, time zones) that I did not feel like messing with at the D1 and above ...
Indicators development for T101's not very simple method
- zznbrm replied Sep 29, 2010
Wow, that is very embarassing!!! Sorry about that, hazelj80. I fixed the problem and uploaded the new version to my previous message. That's what I get for not thoroughly testing before posting! My 100 pip range bar for BASKT1 looks like this now:
Indicators development for T101's not very simple method
- zznbrm replied Sep 29, 2010
See attachment. How much M1 data do you have for the symbol you attached the script to? For online charts (EURUSD M1 for example), you would simply add the RangeBarScript1 script to the EURUSD M1 chart and it will create the Range Bar chart for you. ...
Indicators development for T101's not very simple method
- zznbrm replied Sep 29, 2010
It should not make any difference if the Renko script is placed on an off-line chart or a live chart. Some further investigation into the Renko script would need to be done. I don't use Renko charts, but I do use Range Bar charts - very similar ...
Indicators development for T101's not very simple method
- zznbrm replied Sep 27, 2010
LOL! I like the hint of sarcasm. Here you go.
Assorted Indicators/Scripts
- zznbrm replied Sep 27, 2010
All I am asking for is just a little courtesy on my thread. BTW, discussing humility with an "anonymous" person on the web is tough to do - you have no idea what I have been through in my life. We've had our soap opera for today, time to move on.
Assorted Indicators/Scripts
- zznbrm replied Sep 27, 2010
Arrogance has nothing to do with it. I shared a very robust indicator with the forum only to have someone reply that it is too confusing and bothersome for him to use. There was no "thank you for posting", no "I tried the indicator, but would you ...
Assorted Indicators/Scripts
- zznbrm replied Sep 27, 2010
mindreality, Thank you very much for stopping by to give me your unsolicited opinion of my VerticalLineTimeOfDay indicator. I will make sure that the next version of the indicator is so simple that even an idiot can use it. I'm sorry, but I will not ...
Assorted Indicators/Scripts
- zznbrm replied Sep 26, 2010
For you RSI lovers: RSICrossPriceLive -------------------- Used for live trading, this will show the price needed to hit the user-defined RSI values. The indicator calculates the price needed to be reached for the RSI value to reach the user-defined ...
Assorted Indicators/Scripts
- zznbrm replied Sep 26, 2010
ScrollToDate ------------- Use this script to scroll multiple charts to a certain time. Step 1 - Add the script to a chart and set eblnMaster to true. This is your main chart. The script will create a Vertical Line called "VL-ScrollToDate". Step 2 - ...
Assorted Indicators/Scripts
- zznbrm replied Sep 26, 2010
PairData-BarTime ---------------------- I run this script each "new" time I open MT4. It makes sure I always have up-to-date M1 data for all pairs. It can be added to any chart and will run against M1 data. RangeBarScript2 ---------------------- ...
Assorted Indicators/Scripts