Bob and Shelley Again

Locked
User avatar
milanese
TechAdmin
Posts: 3293
Joined: Wed Jan 09, 2013 9:02 am
Location: btr rdx, r8 +

Re: Bob and Shelley Again

Post by milanese »

spotdespot wrote:...

Mmmmm.....I was aiming for more clarity but I am not sure if I succeeded :?

Cheers,
Dave.
:P don't worry happens to all of us sometimes

Cheers :)

Tommaso
Global Prime is the official SHF broker :yahoo:
Searching for Servers and Workstations with individual configuration?
Just PM
:smile: Click here to go to the BoardKnowledgeBase
NOTE: Cookies and JavaScript are required for the using the board, with full functionality
spotdespot
Trader
Posts: 768
Joined: Sun Jan 22, 2012 11:38 pm

Re: Bob and Shelley Again

Post by spotdespot »

I've got it - the simple version ;)

To match what Steve and others are doing on H1.
  • Setup BASA on H4 as "normal" (Shelley live set for example).
  • Change all charts to H1. That's all you need to do.
If you want to visually track the trades on the charts then change the LWMA's you have on the chart template to 960 and 240 and the RSITMA to show H1, but this is not essential as the EA doesn't care, but you will understand the entry points better.


Cheers,
Dave.
Last edited by spotdespot on Tue Nov 12, 2013 7:23 am, edited 1 time in total.
User avatar
SteveHopwood
Owner
Posts: 9904
Joined: Tue Nov 15, 2011 8:43 am
Location: Misterton - an insignificant village in England. Very pleasant to live in.

Re: Bob and Shelley Again

Post by SteveHopwood »

spotdespot wrote:I've got it - the simple version ;)

To match what Steve and others are doing on H1.
  • Setup BASA on H4 as "normal" (Shelley live set for example).
  • Change all charts to H1. That's all you need to do.
If you want to visually track the trades on the charts then change the LWMA's to 960 and 240 and the RSITMA to show H1, but this is not essential as the EA doesn't care, but you will understand the entry points better.


Cheers,
Dave.
Nice one Dave. I was about to post something similar.

Remind me to add this to post one please.

:D
Read the effing manual, ok?

Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.

I still suffer from OCCD. Good thing, really.

Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.

To see The Weekly Roundup of stuff you guys might have missed Click here

My special thanks to Thomas (tomele) for all the incredible work he does here.
FXTrucker
Trader
Posts: 45
Joined: Wed Dec 07, 2011 4:26 am

Re: Bob and Shelley Again

Post by FXTrucker »

fchaman wrote:Sorry FXTrucker, I am bit slow learner...exactly where in the code you do those changes? Thanks for clarification.

//Fast ma > slow, trend is up & vice versa
extern string tmas="Two MA - 'slowkey'";
extern int FastMaTdTF=240;//) = current chart <<< CHANGE TO 60 FOR H1
extern int FastMaTdPeriod=60;//Zero value disables this ma <<< CHANGE TO 60 x 4=240
int FastMaTdShift=0;//The MA Shift input
extern string tmame="Method: 0=sma; 1=ema; 2=smma; 3=lwma";
extern int FastMaTdMethod=3;
extern string tmaap="Applied price: 0=Close; 1=Open; 2=High";
extern string tmaap1="3=Low; 4=Median; 5=Typical; 6=Weighted";
extern int FastMaTdAppliedPrice=0;
extern int SlowMaTdTF=240; <<<<<< CHANGE TO 60 FOR H1
extern int SlowMaTdPeriod=240; <<< CHANGE TO 240 x 4 = 960
int SlowMaTdShift=0;
extern int SlowMaTdMethod=3;
extern int SlowMaTdAppliedPrice=0;
////////////////////////////////////////////////////////////////////////////////////////
double FastTrendMaVal[3], SlowTrendMaVal;//2 MA trend
string MaTrend;
string MaCrossStatus;//Holds whether the fast MA has been crossed and will be one of the MA cross constants crosslong, crossshort or crossnone
////////////////////////////////////////////////////////////////////////////////////////

extern string sep4a="----------------------------------------------------------------";
extern string mas="----Moving Average Stacking----";
extern bool useMaStackForMainTrade=true; <<< THIS IS FIXED TO H4 SET TO FALSE
extern bool useMaStackForStackTrades=true; <<<< OR CHANGE TO "NULL" IN CODE
extern int FastStackMaPeriod=21;
extern int SlowStackMaPeriod=55;
fchaman- No Problem. The changes I referred to are highlighted in BOLD ABOVE .
To Run the EA on H1 I made the above changes and ran the EA on a H1 Chart. The only hard coded section I know of is the MA stacking module it is coded to H4 only so you have to either set it to false or change period to 0 or NULL or one of the two ma slowkey variables in the code. See below:

if (useMaStackForMainTrade && (!detectMaStack(Symbol(), PERIOD_H4, FastStackMaPeriod, SlowStackMaPeriod, 0, MODE_EMA, PRICE_CLOSE, OP_BUY, 0))) return;

I imagine that using the 240 and 960 moving averages gives the same entries as on the four hour just 3 hours sooner. What I was wondering if others had tried is using the 60 and 240 on the H1 also. Since the 200 and 50 MAs are used as S/R on all time frames for every market I know of the 240 and 60 on H1 might also give good trades with perhaps with a higher frequency, tighter stops and lower take profits.

Just to see what would happen I started a M15 demo in this fashion and had good results in the short run. Account up 1% for a while, 60 % win several winning stack trades so now I know that stacking works well with this version. :D

I am going to start a M30 demo as well. Will let y'all know how they turn out.
Last edited by FXTrucker on Tue Nov 12, 2013 3:28 pm, edited 1 time in total.
There are 10 kinds of people who understand binary. Those who do and those who don't.
spotdespot
Trader
Posts: 768
Joined: Sun Jan 22, 2012 11:38 pm

Re: Bob and Shelley Again

Post by spotdespot »

Hey FxTrucker - did you read all the previous posts since your last? Your changes in bold do not replicate the setups that Steve and others are using to great success, whilst your results with those changes haven't been great. So given the choice.....

Cheers,
Dave.
pipstar
Trader
Posts: 29
Joined: Mon Jul 09, 2012 12:33 pm

Re: Bob and Shelley Again

Post by pipstar »

spotdespot wrote:Hey FxTrucker - did you read all the previous posts since your last? Your changes in bold do not replicate the setups that Steve and others are using to great success, whilst your results with those changes haven't been great. So given the choice.....

Cheers,
Dave.
Hi Dave,

This is my first post here.

Where is Shelley live settings located, (what date?) or which OOTB setting/s need to change to reflect H4 "normal" on H1 charts, please? :? :|

Regards,
Knut
spotdespot
Trader
Posts: 768
Joined: Sun Jan 22, 2012 11:38 pm

Re: Bob and Shelley Again

Post by spotdespot »

pipstar wrote: Hi Dave,

This is my first post here.

Where is Shelley live settings located, (what date?) or which OOTB setting/s need to change to reflect H4 "normal" on H1 charts, please? :? :|

Regards,
Knut
Welcome pipstar,

Basically the settings are outlined here:

http://www.stevehopwoodforex.com/phpBB3 ... ive#p77611

If you jump to that post she is basically using everything else OOTB. There are some clarification questions asked after that post (one by me!).

You don't need to change anything from the H4 setup for H1 except changing the actual chart timeframe to H1. My post above explains but basically as the EA is still running off the H4 60 and 240LWMA's but the H1 RSITMA then if you want to see why the EA is entering trades where it does - ON THE CHART but NOT in the settings you can change the 240LWMA to a 960 LWMA (4 * 240) and the 60LWMA to a 240LWMA (4 * 60) and the RSITMA to use H1.

Cheers,
Dave.
FXTrucker
Trader
Posts: 45
Joined: Wed Dec 07, 2011 4:26 am

Re: Bob and Shelley Again

Post by FXTrucker »

spotdespot wrote:Hey FxTrucker - did you read all the previous posts since your last? Your changes in bold do not replicate the setups that Steve and others are using to great success, whilst your results with those changes haven't been great. So given the choice.....

Cheers,
Dave.
Yes I see I misunderstood and I had asked because my results were so much worse than those reported by others, TX all :mrgreen:
There are 10 kinds of people who understand binary. Those who do and those who don't.
zoltankiss
Trader
Posts: 17
Joined: Thu Mar 21, 2013 9:04 pm
Location: Los Angeles

Re: Bob and Shelley Again

Post by zoltankiss »

Hello,

I put BASA on ECN live account, with a little money ($350) about two weeks ago... version 2n, default settings, TF H4, attached the results so far... is it a normal behavior for BASA? Broker is FXChoice with acceptable conditions, they support many expert advisors by default.... Does anyone have the same or similar results / trades on live?

Best regards,

Zolie
You do not have the required permissions to view the files attached to this post.
zoltankiss
Trader
Posts: 17
Joined: Thu Mar 21, 2013 9:04 pm
Location: Los Angeles

Re: Bob and Shelley Again

Post by zoltankiss »

Entitas wrote:Yes Zolie,

your results basically match mine as well. H4 default settings. Broker Sensus Capital Markets. The ea is struggling from 2 weeks or so, let's see in the next weeks how it will works.


Entitas.

Hi Entitas,

I hope you have that nice gbpnzd +54 pips today!
Locked

Return to “Automated trading systems”