stevehopwoodforex.com
https://www.stevehopwoodforex.com/phpBB3/
Print view

10.7/10.9 INDI SOLUTIONS
https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?t=3550
Page 40 of 72
Author:  padnoter [ Thu May 01, 2014 9:53 am ]
Post subject:  10.7/10.9 INDI SOLUTIONS

Dovilo » Thu May 01, 2014 12:54 am wrote:
padnoter » Wed Apr 30, 2014 8:21 pm wrote:Nice work Dovilo.
At the moment I find it a bit confusing with the array of colours & meanings. Maybe some arrows might help?
or some indicators as to when different timeframes line up (if that could be important?).
You can change colors on what you like and I don't know how arrows would help, it would just be doubling the same informations. Maybe I understood you wrong.

Colors are:

Code: Select all

extern color   UpStrongColor     = Lime; //Color when currency is moving strongly up
extern color   UpWeakColor       = Green; //Color when currency is going weakly up
extern color   FlatColor         = SkyBlue; //Color when currency is going flat 
extern color   DownWeakColor     = Tomato; //Color when currency is going weakly down
extern color   DownStrongColor   = Red; //Color when currency is moving strongly down
FlatColor is set to currency when difference of current slope value and past slope value is lower than FlatRange that you can set.

WeakColor is set to currency when difference of current slope value and past slope value is lower than StrongParametr that you can set and currency is not flat.

I will definitely add alert when timeframes are starting to have same direction since it is probably the best moment to enter that I can gain from this indicator.
...
I am happy that you like it, it is very supportive for me :)
Thanks for advices.

ok, look forward to next update.
With the colour confusion (thanks for explanation & settings params) I meant with all the currency colours & the colours of the css values meaning up/down, my eyes don't naturally separate them & pick out the strong up/down, and thought an extra visual up/down/diagonal/flat arrow might help me (y. it's a duplicate). Anyway might be better when the duplicate currency names are removed... (their colours are mixing/merging/distracting from the lime/red strong slope colours)

cheers
Author:  SpiderX [ Thu May 01, 2014 4:26 pm ]
Post subject:  10.7/10.9 INDI SOLUTIONS

Hi all,

Dashboard 10.6 is updated in the original post:
http://www.stevehopwoodforex.com/phpBB3 ... 652#p90652

Alerts are still not ready as i am still mulling how best to implement this.
Hopefully by next update.
There are a few bugfixes and upgrades in place, please try this out.

v1.06

-Fixed bug that caused indicator to not load when Empty4 is started
-Broker suffix would be removed from pair names displayed.
-Implemented showOnyRelevant to hide the white pairs. Thanks to VirtualFM for this upgrade !

Code: Select all

extern bool showOnlyRelevant  =true;

-Implemented pairColorMode , 0 is for original pair colour code, 1 for pair colour code requested by alronte

Code: Select all

extern int pairColourMode = 1;
Pair Colour Code 0:
Lime: W2.1 and D2.1 are aligned up, h1 stoch prev below stoch low, h1 stoch is above stoch low
Lime(Bold): W2.1 and D2.1 are aligned up, h4 stoch prev below stoch low, h4 stoch is above stoch low
Red: W2.1 and D2.1 are aligned dn, h1 stoch prev above stoch high, h1 stoch is below stoch high
Red(Bold): W2.1 and D2.1 are aligned dn, h4 stoch prev above stoch high, h4 stoch is below stoch high
Yellow : W2.1 and D2.1 are aligned up, h1 stoch below stoch low,
W2.1 and D2.1 are aligned dn, h1 stoch above stoch high
Yellow(Bold):W2.1 and D2.1 are aligned up, h4 stoch below stoch low,
W2.1 and D2.1 are aligned dn, h4 stoch above stoch high

Pair Colour Code 1:
Red - when WK2.1, D2.1 , DStoch direction are aligned down , with either one of the selected stoch timeframes below stoch low
Lime - when WK2.1, D2.1 , DStoch direction are aligned up , with either one of the selected stoch timeframes above stoch high
BrickRed - when WK2.1, D2.1 , DStoch direction are aligned down, with none of the selected stoch timeframe at the right level
Green - when WK2.1, D2.1 , DStoch direction are aligned up, with none of the selected stoch timeframe at the right level
Red and Lime will be bold when the selected stoch is moving in the right direction (i.e: Time to buy or sell according to Al)

Cheers
Author:  fire580 [ Thu May 01, 2014 4:33 pm ]
Post subject:  10.7/10.9 INDI SOLUTIONS

Thanks again SpiderX will give it a spin :cheer:
Author:  fire580 [ Thu May 01, 2014 4:44 pm ]
Post subject:  10.7/10.9 INDI SOLUTIONS

If this latest version v.06 doesn't satisfy everyone I don't know what will :good: :yahoo:
Author:  Dovilo [ Thu May 01, 2014 4:55 pm ]
Post subject:  10.7/10.9 INDI SOLUTIONS

New version of Auto CSS features:
- Alarms when all directions are the same for currency. You can change "secondsToUpdate" to change how often indicator will alarm. I am thinking about changing it to on new bar though.
- I deleted names of currencies except the first ones.

Any ideas or bugs spotted? Let me know.
Author:  SpiderX [ Thu May 01, 2014 5:11 pm ]
Post subject:  10.7/10.9 INDI SOLUTIONS

Dovilo » Fri May 02, 2014 12:55 am wrote:New version of Auto CSS features:
- Alarms when all directions are the same for currency. You can change "secondsToUpdate" to change how often indicator will alarm. I am thinking about changing it to on new bar though.
- I deleted names of currencies except the first ones.

Any ideas or bugs spotted? Let me know.

Think there is a bug within the CSS itself, that causes the indicator to not load during initialization.
Hopefully someone can fix this.

Edit: It is the same bug that was within the dashboard.

To fix:

Replace

Code: Select all

if ( MarketInfo( newSymbol, MODE_TRADEALLOWED ) > EPSILON )
with

Code: Select all

if ( MarketInfo( newSymbol, MODE_BID ) > EPSILON )
Cheers
Author:  Dovilo [ Thu May 01, 2014 5:24 pm ]
Post subject:  10.7/10.9 INDI SOLUTIONS

SpiderX » Thu May 01, 2014 5:11 pm wrote:
Think there is a bug within the CSS itself, that causes the indicator to not load during initialization.
Hopefully someone can fix this.

Edit: It is the same bug that was within the dashboard.

To fix:

Replace

Code: Select all

if ( MarketInfo( newSymbol, MODE_TRADEALLOWED ) > EPSILON )
with

Code: Select all

if ( MarketInfo( newSymbol, MODE_BID ) > EPSILON )
Cheers
It works, thanks!

I reuploaded AutoCSS with this bugfix.
Author:  alorente [ Thu May 01, 2014 5:47 pm ]
Post subject:  10.7/10.9 INDI SOLUTIONS

SpiderX » Thu May 01, 2014 5:26 pm wrote:Hi all,

Dashboard 10.6 is updated in the original post:
http://www.stevehopwoodforex.com/phpBB3 ... 652#p90652

Alerts are still not ready as i am still mulling how best to implement this.
Hopefully by next update.
There are a few bugfixes and upgrades in place, please try this out.

v1.06

-Fixed bug that caused indicator to not load when Empty4 is started
-Broker suffix would be removed from pair names displayed.
-Implemented showOnyRelevant to hide the white pairs. Thanks to VirtualFM for this upgrade !

Code: Select all

extern bool showOnlyRelevant  =true;

-Implemented pairColorMode , 0 is for original pair colour code, 1 for pair colour code requested by alronte

Code: Select all

extern int pairColourMode = 1;
Pair Colour Code 0:
Lime: W2.1 and D2.1 are aligned up, h1 stoch prev below stoch low, h1 stoch is above stoch low
Lime(Bold): W2.1 and D2.1 are aligned up, h4 stoch prev below stoch low, h4 stoch is above stoch low
Red: W2.1 and D2.1 are aligned dn, h1 stoch prev above stoch high, h1 stoch is below stoch high
Red(Bold): W2.1 and D2.1 are aligned dn, h4 stoch prev above stoch high, h4 stoch is below stoch high
Yellow : W2.1 and D2.1 are aligned up, h1 stoch below stoch low,
W2.1 and D2.1 are aligned dn, h1 stoch above stoch high
Yellow(Bold):W2.1 and D2.1 are aligned up, h4 stoch below stoch low,
W2.1 and D2.1 are aligned dn, h4 stoch above stoch high

Pair Colour Code 1:
Red - when WK2.1, D2.1 , DStoch direction are aligned down , with either one of the selected stoch timeframes below stoch low
Lime - when WK2.1, D2.1 , DStoch direction are aligned up , with either one of the selected stoch timeframes above stoch high
BrickRed - when WK2.1, D2.1 , DStoch direction are aligned down, with none of the selected stoch timeframe at the right level
Green - when WK2.1, D2.1 , DStoch direction are aligned up, with none of the selected stoch timeframe at the right level
Red and Lime will be bold when the selected stoch is moving in the right direction (i.e: Time to buy or sell according to Al)

Cheers
Great Job Spider !!! Thanks a million.
Author:  padnoter [ Thu May 01, 2014 9:30 pm ]
Post subject:  10.7/10.9 INDI SOLUTIONS

Nice ones Spider & Dovilo....
thank you both.
Author:  willmalou [ Thu May 01, 2014 10:55 pm ]
Post subject:  10.7/10.9 INDI SOLUTIONS

Just a quick question. Is there a way to modify this to show on an offline chart for basket trading?

10.7_3.23STO_wTS_ HT ALERT.mq4
All times are UTC Page 40 of 72