Thanks Baluda
Testing entry and exit strategies now
Loving the potential of these indicators.
Baluda Indicators
- pacinvest
- Trader
- Posts: 150
- Joined: Tue May 15, 2012 10:24 am
- Location: Whangarei, New Zealand
- NeoTrader
- Trader
- Posts: 436
- Joined: Wed Apr 04, 2012 2:52 pm
- Location: small Village at Lake Chiemsee, Bavaria, Germany
Re: Baluda Slope Strength Indicators
hi all,
first of all thanks to balluda for his awesome coding work and his indicators. They inspired me to do some great analysis. Since his indicators did not everything I wanted to do, I did some rework of his indicators.
This indicator was never meant to be released in the public. I also don't want to insult baluda since i removed his copyrights and also renamed the indicator. I developed this indicator solely for my trading and for analysis purposes only.
But since I think that it is very useful and on the fact that i gained a wealth of knowledge here I thought that I can give a little back.
Description:
TMA based Currency Slope Strength for Single Pair Charts (TMA-CSS-SP)
based on CurrencySlopeStrength.mq4 and CSSDiff from Baluga
This Indicator shows only the CSS for the two currencies on the active chart.
The CSS Value is calculated as the original from baluda.
It is only reduced to pairs that are relevant to the current chart.
Changes:
For EA developers who are interested in the buffers:
Hope you enjoy this and wish you happy trading, ohh.. its weekend...than happy testing or happy analysis....
NeoTrader
first of all thanks to balluda for his awesome coding work and his indicators. They inspired me to do some great analysis. Since his indicators did not everything I wanted to do, I did some rework of his indicators.
This indicator was never meant to be released in the public. I also don't want to insult baluda since i removed his copyrights and also renamed the indicator. I developed this indicator solely for my trading and for analysis purposes only.
But since I think that it is very useful and on the fact that i gained a wealth of knowledge here I thought that I can give a little back.
Description:
TMA based Currency Slope Strength for Single Pair Charts (TMA-CSS-SP)
based on CurrencySlopeStrength.mq4 and CSSDiff from Baluga
This Indicator shows only the CSS for the two currencies on the active chart.
The CSS Value is calculated as the original from baluda.
It is only reduced to pairs that are relevant to the current chart.
Changes:
- fontsize selectable
calculate and show only the Slope and Values for the current Pair
timeframe selectable
added Diff Line that shows the difference between the two CSS as Value, as a third slope or as a histogram
the histogram Level can be changed
all slope views can be enabled/disabled
added Alerts for Level Crosses
TMAtrue Mode that prevents any so-called 'repainting'
optimized overal execution speed (about half the time)
unique window id so you can put up to 10 Indicators on 1 chart
- general Settings
autoSymbols - set to true to let SlopeStrength use all symbols available in the Market Watch window. Overrules 'symbolsToWeigh'
symbolsToWeigh - comma delimited list of symbols to use.
maxBars - limits the history to this number of candles, set to 0 to disable
font - font to use
fontSize - fontsize to use
tmaTrueMode - usees the TMAtrue calculation, prevents any so-called 'repainting'
Line/Histo Settings
showDiffLine - enable/disable the view of the Diffline
showBaseLine - enable/disable the view of the CurrencyBase line (1st Currency of the Pair)
showCrossLine - enable/disable the view of the CurrencyCross line (2nd Currency of the Pair)
showHisto - enable/disable Histogramm Mode;
histoLevel - set Histogramm Level where the color changes
Timeframe
autoTimeFrame - set to true to use the timeframe of the chart, this overrules 'timeFrame'
timeFrame - set to one of the values indicated (M1,M5,M15,M30,H1,H4,D1,W1,MN1)
Colors
colorCurrencyBase - color for the Base Currency Line and Value
colorCurrencyCross - color for the Cross Currency Line and Value
colorDiff - color for the Diff Line and Value
lineColorRange - color for the ranging area of the Histogram
lineColorOverLevel - color for over defined level of the Histogram
lineColorUnderLevel - color for below defined level of the Histogram
Alerts
useAlerts - enable/disable alerts
emailAlert - enable/disable email alerts
popupAlert - enable/disable popup alerts
soundAlert - enable/disable sound alerts
soundFileName - set your prefered alertsound (only for sound Alerts)
diffCrossAlerts - enable/disable crossing alerts ( I had more alert Modes before )
diffAlertLevel1-5 - enable/disable alert levels (99 vor disable)
For EA developers who are interested in the buffers:
Code: Select all
if ( !showHisto ) {
IndicatorBuffers(3);
SetIndexBuffer ( 0, arrCurrencyBase );
SetIndexLabel ( 0, currencyBase );
SetIndexBuffer ( 1, arrCurrencyCross );
SetIndexLabel ( 1, currencyCross );
SetIndexBuffer ( 2, lineCSSDiff );
SetIndexLabel ( 2, "Slope Difference" );
}
if ( showHisto ) {
IndicatorBuffers(4);
SetIndexBuffer ( 0, lineCSSDiff );
SetIndexLabel ( 0, "Slope Difference" );
SetIndexBuffer ( 1, lineOver8CSSDiff );
SetIndexLabel ( 1, "CSSDiffOver8" );
SetIndexBuffer ( 2, lineUnder8CSSDiff );
SetIndexLabel ( 2, "CSSDiffUnder8" );
SetIndexBuffer ( 3, lineRangingCSSDiff );
SetIndexLabel ( 3, "CSSDiffRange" );
}
Hope you enjoy this and wish you happy trading, ohh.. its weekend...than happy testing or happy analysis....
NeoTrader
You do not have the required permissions to view the files attached to this post.
- lucklogic
- Trader
- Posts: 85
- Joined: Mon Jan 23, 2012 6:26 pm
- Location: On The Hoe in Plymouth, UK
Re: Baluda Slope Strength Indicators
Baluda wrote:Here are my indicators, I hope you find use for them.
Credits go to:
Simeon Semenych - orignal ccfp indicator
Alexandre A.B. Borela - DrawCell method
ZZNBRM - TMA calculation
[*]colo(u)rs - you know what to do[/list]
Thank you, this is great work and is very good of you to release the code
- NeoTrader
- Trader
- Posts: 436
- Joined: Wed Apr 04, 2012 2:52 pm
- Location: small Village at Lake Chiemsee, Bavaria, Germany
Re: Baluda Slope Strength Indicators
Hi lucklogic,
If you want to tell me that baluda also based his work on other partys...i know this.
If you want to tell me that i should put more credits or copyright information in this than i must say that, as i clearly said in my message, I didn't intended to release this to the public. I developed it solely for me and therefor had put my own header with my own copyright in it as i do with all code I develop or recode. That way i know what code is already redone with my coding standards.

This is baludas Thread and i just put it here because it is related to his indicators. Since i work also on some other indicators maybe i will open my own thread and also release the sources.
From the replies it appears that it doesn't seem to have much value for most of the people here.
Will see...
happy trading,
NeoTrader
I don't know what you want to tell me?lucklogic wrote:Credits go to:
Simeon Semenych - orignal ccfp indicator
Alexandre A.B. Borela - DrawCell method
ZZNBRM - TMA calculation
If you want to tell me that baluda also based his work on other partys...i know this.
If you want to tell me that i should put more credits or copyright information in this than i must say that, as i clearly said in my message, I didn't intended to release this to the public. I developed it solely for me and therefor had put my own header with my own copyright in it as i do with all code I develop or recode. That way i know what code is already redone with my coding standards.
You are welcome...lucklogic wrote:Thank you, this is great work and is very good of you to release the codeto the general membership
This is baludas Thread and i just put it here because it is related to his indicators. Since i work also on some other indicators maybe i will open my own thread and also release the sources.
From the replies it appears that it doesn't seem to have much value for most of the people here.
Will see...
happy trading,
NeoTrader
-
dentiok
- Trader
- Posts: 71
- Joined: Tue Dec 06, 2011 3:03 pm
Re: Baluda Slope Strength Indicators
Neo, thanks for sharing your great work and brilliant ideas on this topic. I encourage you to continue although it seems that nobody is interested, but do not consider that this is really.NeoTrader wrote:
From the replies it appears that it doesn't seem to have much value for most of the people here.
Will see...
happy trading,
NeoTrader
And do not worry too much about the copyrigth, for all we know deeply the system know who are involved in its development.
You do not have the required permissions to view the files attached to this post.
-
fire580
- Trader
- Posts: 314
- Joined: Wed May 09, 2012 4:51 pm
Re: Baluda Slope Strength Indicators
Thank you NeoTrader - great work
- NeoTrader
- Trader
- Posts: 436
- Joined: Wed Apr 04, 2012 2:52 pm
- Location: small Village at Lake Chiemsee, Bavaria, Germany
Re: Baluda Slope Strength Indicators
Ahhh... at least one encouraging reaction..dentiok wrote:Neo, thanks for sharing your great work and brilliant ideas on this topic. I encourage you to continue although it seems that nobody is interested, but do not consider that this is really.
And do not worry too much about the copyrigth, for all we know deeply the system know who are involved in its development.
and a second one...fire580 wrote:Thank you NeoTrader - great work
I know that it is downloaded 50 times...but maybe all only hunter-gatherer
It would be interesting to know how u all use this indicator...and to have a little exchange of experiences or informations you gathered.
happy trading,
NeoTrader
-
dentiok
- Trader
- Posts: 71
- Joined: Tue Dec 06, 2011 3:03 pm
Re: Baluda Slope Strength Indicators
With all respect and if you have some time, it may be possible to add a mtf function to the previous list? especially to see what´s happend in lower TF´s e.g: Current TF=daily, Lower TF=H4. That would be possible?Baluda wrote:
3. CSSDiff
Shows the difference of the Slope Strengths of the currencies that are part of the symbol on the chart. New version: v1.0.2
User settings:
- autoSymbols - set to true to let SlopeStrength use all symbols available in the Market Watch window. Overrules 'symbolsToWeigh'
- symbolsToWeigh - comma delimited list of symbols to use.
- maxBars - limits the history to this number of candles, set to 0 to disable
- nonPropFont - non proportional font to use
- ignoreFuture - set to true to ignore future results for each candle, preventing any so-called 'repainting'
- colo(u)rs - you know what to do
Thank you in advance.
- NeoTrader
- Trader
- Posts: 436
- Joined: Wed Apr 04, 2012 2:52 pm
- Location: small Village at Lake Chiemsee, Bavaria, Germany
Re: Baluda Slope Strength Indicators
Hi dentiok,
Look at the pictures in my release message. There you will see that the indicator is working in three different TFs at once...and you can open up to 10 indicator windows with different settings on one chart.
happy trading,
NeoTrader
You can do this with my version. Just drag the indicator a second time on the chart and set autoTimeFrame to false and give your desired TF in the parameter "timeFrame".dentiok wrote:With all respect and if you have some time, it may be possible to add a mtf function to the previous list? especially to see what´s happend in lower TF´s e.g: Current TF=daily, Lower TF=H4. That would be possible?
Look at the pictures in my release message. There you will see that the indicator is working in three different TFs at once...and you can open up to 10 indicator windows with different settings on one chart.
happy trading,
NeoTrader
-
SWG123
- Trader
- Posts: 565
- Joined: Wed Nov 16, 2011 3:02 pm
- Location: Cape Town
Re: Baluda Slope Strength Indicators
Adding my vote, I'm using it too. Consistent with Baluda's indi but lower overhead. Thanks.NeoTrader wrote:Ahhh... at least one encouraging reaction..dentiok wrote:Neo, thanks for sharing your great work and brilliant ideas on this topic. I encourage you to continue although it seems that nobody is interested, but do not consider that this is really.
And do not worry too much about the copyrigth, for all we know deeply the system know who are involved in its development.Thank you very much....
and a second one...fire580 wrote:Thank you NeoTrader - great workThank you too ....
I know that it is downloaded 50 times...but maybe all only hunter-gatherer
It would be interesting to know how u all use this indicator...and to have a little exchange of experiences or informations you gathered.
happy trading,
NeoTrader