10.2 forum

This is where Bob posts his own threads
Post Reply
f451
Trader
Posts: 85
Joined: Thu Nov 24, 2011 9:44 am
Location: Melbourne, Australia

Re: 10.2 forum

Post by f451 »

Gotta agree with that.
User avatar
spyderman
Trader
Posts: 338
Joined: Sun Dec 11, 2011 1:39 pm

Re: 10.2 forum

Post by spyderman »

Hey all,

Trying to get up to speed on 10.2 & 10.2a. Got everything loaded but I seem to be having problems with the WHO. Isn't it supposed to reset to 0 at the beginning of every week. It appears to be mirroring (almost) the green/gold 2x1?

Am I doing something totally wrong?

Thanks
You do not have the required permissions to view the files attached to this post.
Snaggin' some pips
garyfritz

Re: 10.2 forum

Post by garyfritz »

Bob's indicators only work with GMT+0 crims, or at least crims that have Sunday D1 bars. Replace his indicators with the fixed ones here: http://www.stevehopwoodforex.com/phpBB3 ... 486#p13486

Bob, could we put the fixed indicators in your source posts so people don't keep running into this?
User avatar
spyderman
Trader
Posts: 338
Joined: Sun Dec 11, 2011 1:39 pm

Re: 10.2 forum

Post by spyderman »

garyfritz wrote:Bob's indicators only work with GMT+0 crims, or at least crims that have Sunday D1 bars. Replace his indicators with the fixed ones here: http://www.stevehopwoodforex.com/phpBB3 ... 486#p13486

Bob, could we put the fixed indicators in your source posts so people don't keep running into this?

Thanks Gary,

I noticed you guys talking about that but missed the update reference.
Snaggin' some pips
User avatar
nanningbob
Trader
Posts: 4564
Joined: Sun Dec 04, 2011 1:23 pm

Re: 10.2 forum

Post by nanningbob »

garyfritz wrote:Bob's indicators only work with GMT+0 crims, or at least crims that have Sunday D1 bars. Replace his indicators with the fixed ones here: http://www.stevehopwoodforex.com/phpBB3 ... 486#p13486

Bob, could we put the fixed indicators in your source posts so people don't keep running into this?
OK done udated with the 6.26 date
I trade http://www.stevehopwoodforex.com/phpBB3 ... =38&t=3964,
I talk about my philosophy of trading here.
http://www.stevehopwoodforex.com/phpBB3 ... =38&t=3627
"The key to converting something useful to others is simplicity. Complexity is the enemy to execution." Tony Robbins
User avatar
nanningbob
Trader
Posts: 4564
Joined: Sun Dec 04, 2011 1:23 pm

Re: 10.2 forum

Post by nanningbob »

Ray Singcar wrote:Hi Bob
I have attempted to trade many systems and EA's in the past and have followed 10 and 10.2. It has taken awhile for me to half understand the mindset and logic with your systems. However it has really fallen into place with 10.2a I have a clearly defined mechanical plan now and know exactly when to pull the trigger.
I sincerely wish you all the best with the school....you may only have 40 pupils but in the cyber world you have helped hundreds..I feel now I am starting to become a fisherman.
I would like to make a small donation from my winnings to either your school or charity. Could you please advise account or payee details.

Many many thanks...Jeff ;)
If you find my system helpful please make a donation to: http://www.compassion.com/

This is my favorite charity, Thank you.
I trade http://www.stevehopwoodforex.com/phpBB3 ... =38&t=3964,
I talk about my philosophy of trading here.
http://www.stevehopwoodforex.com/phpBB3 ... =38&t=3627
"The key to converting something useful to others is simplicity. Complexity is the enemy to execution." Tony Robbins
Lifesys
Trader
Posts: 126
Joined: Wed Apr 25, 2012 2:05 am
Location: Echuca Victoria. Australia

Re: 10.2 forum

Post by Lifesys »

Hi Bob
Thanks for all your contributions.
Another issue I have mentioned on other threads & discussed with Steve is the Pts vs pips.
When you first released 10.2 pivot indis, pivots levels were all factored by 10000 which meant they were useless on all JPY, XAG & XAU pairs. Later releases have the 'multiplier' factor which again is a sometimes fix. The difference from price to pivot on shown as Pts (but is usually pips - 1/ 100 cent).
To test the accuracy of any system/indi I suggest drag onto EURUSD, EURJPY & XAUUSD.
Yesterday, on gold there was a difference Price to 10.2_WeeklyMainPivot of 150000 pts!! Which means "multiplier" is really a fiddle factor not a universal calculation.
Could I strongly suggest converting all indis to the Pipfactor system now partly implemented in MPTM. I realise this is an ongoing challenge as so many codebytes are written using the wrong ended application of MarketInfo (..);
eg SH EAs written using MaxSpread vs. MarketInfo("EURUSD",MODE_SPREAD); are inconsistent as MaxSpread must be expressed in points but all other declarations are pips.
Hence BE default - 25pips, MaxSpread default - 120, which of course is totally ineffective in 4 digit systems.
Using Pfactor,
spread = (Ask-Bid) * Pipfactor; [ or factor in MPTM]
is accurate across all pairs and timeframes.
Thanks again
Lifesys
Trader
Posts: 126
Joined: Wed Apr 25, 2012 2:05 am
Location: Echuca Victoria. Australia

Re: 10.2 forum

Post by Lifesys »

Hi
Further to my comment above it would be easier in 10.2 Pivots (6.1->) to simply change multiplier section to :

multiplier = 10000;
if(StringFind(Symbol(),"JPY", 0) !=-1 || StringFind(Symbol(),"XAG",0) !=-1 ) multiplier = 100;
if(StringFind(Symbol(),"XAU",0) !=-1) multiplier = 10;

which is as effective.
I am aware many here do not trade XAU, XAG but they can be more exciting than currencies, so why not make Indi's correct across them?
The first thing I do when seeing value in any indicator/EA is convert to true pips.
In original 10.2 Pivots, after fixing to pips, I also reduced prefixes to 2-3 letters and added actual price value to each Pivot/SupRes line, making it easier to check entry, TP levels.
Regards
User avatar
nanningbob
Trader
Posts: 4564
Joined: Sun Dec 04, 2011 1:23 pm

Re: 10.2 forum

Post by nanningbob »

Lifesys wrote:Hi
Further to my comment above it would be easier in 10.2 Pivots (6.1->) to simply change multiplier section to :

multiplier = 10000;
if(StringFind(Symbol(),"JPY", 0) !=-1 || StringFind(Symbol(),"XAG",0) !=-1 ) multiplier = 100;
if(StringFind(Symbol(),"XAU",0) !=-1) multiplier = 10;

which is as effective.
I am aware many here do not trade XAU, XAG but they can be more exciting than currencies, so why not make Indi's correct across them?
The first thing I do when seeing value in any indicator/EA is convert to true pips.
In original 10.2 Pivots, after fixing to pips, I also reduced prefixes to 2-3 letters and added actual price value to each Pivot/SupRes line, making it easier to check entry, TP levels.
Regards
If you can get a coder to do this it would be appreciated. I have a teacher whose mother just had a heart attack and I have to go help. I will probably not be around for a couple of days. Sorry.
I trade http://www.stevehopwoodforex.com/phpBB3 ... =38&t=3964,
I talk about my philosophy of trading here.
http://www.stevehopwoodforex.com/phpBB3 ... =38&t=3627
"The key to converting something useful to others is simplicity. Complexity is the enemy to execution." Tony Robbins
GT3RS
Trader
Posts: 198
Joined: Fri Dec 23, 2011 1:58 pm

Re: 10.2 forum

Post by GT3RS »

Hi all,

Just joining in here. New to Bob's strategies [I know! Where HAVE I been!!??].

Reading through the material and setting up my charts.

I'm going to start by keeping it simple and just taking the SRF trades - where price fails to make it to a S/R level and then reverses back through the pivot. Would that be a sensible way to start? Until I get a handle on the whole thing?

So much to learn!!! :lol: :lol:

Cheers,

Rob
Post Reply

Return to “Bob's individual forum”