Useful 10.x thingies by Steve and Others

Breakdancer
Trader
Posts: 10
Joined: Fri May 25, 2012 2:23 am

Re: Useful 10.x thingies by Steve and Others

Post by Breakdancer »

Hi Steve:

Thank you and all the coders for the efforts on developing the CSS H1 Colour Change script.
Please let me share my user feedback of my testing:

-Jemook rules says: "Wait for H1 CSS to change colour from red to grey(goldenrod) or green and enter long."
-Your logic for the script at post 1 says: "sends a buy trade when the market is above the MA and the CSS bars change from brown(red)/goldenrod to green.".
So there is a difference. Jemook method, for buys, sends the trade when CSS changes from red to goldenrod or green and the script only after the change to green. Would it be possible to include an option in the script in order to choose the trade trigger (goldenrod and green OR only green for buys)?. I could minimize this by lowering the CSS threshold, but it would give more false signals.

-The closures have worked pretty well, but not all the openings. Sometimes the trades are sent a couple of candles later. I have carefully set the script's and my chart's CSS threshold to 2.5. Then I realised that the 10.5 CSS1.0.7d for automation as default has the threshold of 3.0. Maybe the script is only taking this one into account?. Only a thought, I really dont know, but when I change the CSS in the chart to 3.0, it matches with the opening of the trade even if the script CSS threshold is set to 2.5.

Cheers
User avatar
McNish
Trader
Posts: 227
Joined: Tue Nov 06, 2012 3:56 pm

Re: Useful 10.x thingies by Steve and Others

Post by McNish »

Hi guys,
Can anyone update on the workings of the Css H1 in & out trades ! Cheers, :)
User avatar
traderduke
Trader
Posts: 306
Joined: Mon Nov 28, 2011 7:30 pm
Location: East Coast USA

Re: Useful 10.x thingies by Steve and Others

Post by traderduke »

Hi gang
Is anybody getting this printout in there expert tab when loading the script "10.5 CurrencySlopeStrength1.0.7d". The broker is FinFX .

2013.07.14 15:24:50 RK-10.5 CurrencySlopeStrength1.0.7d GBPJPY,M3: unknown subwindow number -1 for ObjectCreate function

It WORKKS in MBT & fxcm???



Thanks

Ray
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: Useful 10.x thingies by Steve and Others

Post by SteveHopwood »

I have added a new manager to post 1. Please read Jem's CSS trade manager.mq4.

: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.
User avatar
Jemook
Trader
Posts: 1085
Joined: Thu May 10, 2012 10:19 am
Location: Bondi, Sydney, Australia

Re: Useful 10.x thingies by Steve and Others

Post by Jemook »

Woohoo, testing this out today thanks Steve :)
Please note I am no longer affiliated with Global Prime. I've moved on to my next adventure with Afterprime.

Catch me here: https://www.afterprime.com
User avatar
rosst
Trader
Posts: 280
Joined: Wed Feb 27, 2013 1:11 pm
Location: Austin, Texas

Re: Useful 10.x thingies by Steve and Others

Post by rosst »

Has anyone tried to make an EA just based on the CSS? For example - say the CSS is gold and it turns green buy - when it turns gold close trade. Make the 240 MA optional - it might be better if you trade in accordance with the above/below rule - or not... my guess is you will get a lot of small losing trades, but the times when the green or red stays in place for a while might overcome those small losses? Just curious....
User avatar
Jemook
Trader
Posts: 1085
Joined: Thu May 10, 2012 10:19 am
Location: Bondi, Sydney, Australia

Re: Useful 10.x thingies by Steve and Others

Post by Jemook »

Steve your CSS close script works perfectly. Thanks!

J
Please note I am no longer affiliated with Global Prime. I've moved on to my next adventure with Afterprime.

Catch me here: https://www.afterprime.com
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: Useful 10.x thingies by Steve and Others

Post by SteveHopwood »

Jemook wrote:Steve your CSS close script works perfectly. Thanks!

J
You are most welcome.

: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.
red0nk
Posts: 3
Joined: Mon Mar 10, 2014 7:44 am
Location: Canberra, AU

Re: Useful 10.x thingies by Steve and Others

Post by red0nk »

I would still like to use this EA but it doesn't work on the 610 Empty4 I am now using. Can someone please advise whereabouts I might find some help.

Thankyou.

EDIT: I don't know anything about code but I managed to fix a few using a post from another thread on this forum, now I am left with three errors all the same "not all control paths return a value Jem%27s CSS trade manager.mq4 107 1"

This is the loop (or whatever it is called) with the error:

int init()
{

factor = PFactor(Symbol());

while (IsConnected()==false)
{
Comment("Waiting for Empty4 connection...");
Sleep(1000);
}//while (IsConnected()==false)

Gap="";
if (DisplayGapSize >0)
{
for (int cc=0; cc< DisplayGapSize; cc++)
{
Gap = StringConcatenate(Gap, " ");
}
}//if (DisplayGapSize >0)

TimeFrame = GetTimeFrame();

start();

}

I feel like it is a quick fix so if someone wants to let me know what I have to manipulate that would be greatly appreciated.

Cheers,
Jake
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: Useful 10.x thingies by Steve and Others

Post by SteveHopwood »

red0nk » Mon Mar 17, 2014 6:17 am wrote:I would still like to use this EA but it doesn't work on the 610 Empty4 I am now using. Can someone please advise whereabouts I might find some help.

Thankyou.

EDIT: I don't know anything about code but I managed to fix a few using a post from another thread on this forum, now I am left with three errors all the same "not all control paths return a value Jem%27s CSS trade manager.mq4 107 1"

This is the loop (or whatever it is called) with the error:

int init()
{

factor = PFactor(Symbol());

while (IsConnected()==false)
{
Comment("Waiting for Empty4 connection...");
Sleep(1000);
}//while (IsConnected()==false)

Gap="";
if (DisplayGapSize >0)
{
for (int cc=0; cc< DisplayGapSize; cc++)
{
Gap = StringConcatenate(Gap, " ");
}
}//if (DisplayGapSize >0)

TimeFrame = GetTimeFrame();

start();

}

I feel like it is a quick fix so if someone wants to let me know what I have to manipulate that would be greatly appreciated.

Cheers,
Jake
Those are not errors Jake, they are warnings. Learn to ignore them and save yourself a lot of work. Errors stop the code compiling. Warnings do not.

:xm:
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.
Post Reply

Return to “Nanningbob 10.x”