BALUDA'S SUPER CSS-2.0. THE SIMPLEST TRADING SYSTEM EVER

The forum for stuff related to this method of trading. Baluda coded the indi. Bob devised the trading method.
Post Reply
rubenpinta
Posts: 1
Joined: Thu Aug 11, 2016 7:46 pm

BALUDA'S SUPER CSS-2.0. THE SIMPLEST TRADING SYSTEM EVER

Post by rubenpinta »

Hello my name is Ruben, first of all thanks you to all who has contributed to this thread.

Second: I've made a simply dashboard for the CSS v2.0 which only need to have the file "Gary.BaludaSuperCSS.v.2.0" in indicators folder, but with the ShowArrow = false.

I coded it in 4H by default and 7 periods in the past plus the current candle.
The gray color means that there is no change in color between candles. And the lime and red color is the signal to buy o sell the pair and also to close the previous operation.
You do not have the required permissions to view the files attached to this post.
rogeriob28
Posts: 6
Joined: Tue Sep 06, 2016 1:56 pm

BALUDA'S SUPER CSS-2.0. THE SIMPLEST TRADING SYSTEM EVER

Post by rogeriob28 »

Hi Bob,
I did not find the 2.2 version in the post 1.
Ony Gary.BaludaSuperCSS.v.2.0.mq4 version for download.

Where can I get the version 2.2 mq4?

Thank you,
Rogério
rogeriob28
Posts: 6
Joined: Tue Sep 06, 2016 1:56 pm

BALUDA'S SUPER CSS-2.0. THE SIMPLEST TRADING SYSTEM EVER

Post by rogeriob28 »

Hi

I found no link to version 2.2 only the information below.

Workable v. 2.2
9.2.16
Fixed the alert system which didn't work on v. 2.0
9.03.16
Gary fixed the giving of signal showing which pair gave the signal.

Dowload link Baluda.SuperSlope.v.2.0.mq4
http://www.stevehopwoodforex.com/phpBB3 ... p?id=65827

Regards,
Rogério
pakeha
Trader
Posts: 78
Joined: Tue Nov 06, 2012 3:20 am
Location: Canada

BALUDA'S SUPER CSS-2.0. THE SIMPLEST TRADING SYSTEM EVER

Post by pakeha »

rogeriob28 » Mon Oct 10, 2016 6:05 am wrote:Hi

I found no link to version 2.2 only the information below.

Workable v. 2.2
9.2.16
Fixed the alert system which didn't work on v. 2.0
9.03.16
Gary fixed the giving of signal showing which pair gave the signal.

Dowload link Baluda.SuperSlope.v.2.0.mq4
http://www.stevehopwoodforex.com/phpBB3 ... p?id=65827

Regards,
Rogério
Rogerio use the version in post 1 - it is the latest.
rogeriob28
Posts: 6
Joined: Tue Sep 06, 2016 1:56 pm

BALUDA'S SUPER CSS-2.0. THE SIMPLEST TRADING SYSTEM EVER

Post by rogeriob28 »

Hi pakeha,
Thanks for the answer.
I'm testing the version Gary.BaludaSuperCSS.v.2.0.

The result of buffers using parameter showOnlySymbolOnChart = false; is totally different from false.



I'm testing this new version of an EA.
When I run and work without errors but when I try to change any parameter and run the initSymbols () function for the second time EA is removed automatically.

I found an array out of range problem.
When this function is performed for a second time it returns the value symbolNames =, .

Code: Select all

 for(i=0; i<symbolCount; i++)
     {
      // Increase currency occurrence
      int currencyIndex=getCurrencyIndex(StringSubstrOld(symbolNames[i],0,3));
      currencyOccurrences[currencyIndex]++;
      currencyIndex=getCurrencyIndex(StringSubstrOld(symbolNames[i],3,3));
      currencyOccurrences[currencyIndex]++;
     }
Thank you,
Rogério
VirtualFM
Trader
Posts: 84
Joined: Sat Apr 28, 2012 3:45 am

BALUDA'S SUPER CSS-2.0. THE SIMPLEST TRADING SYSTEM EVER

Post by VirtualFM »

Hello guys!

I've been so busy doing my own stuff that I only check the forum every month or so, but it's great to see that people keep making progress, and sharing it with others. Thank you for all contributors.

So I wanted to contribute a little bit myself.

In first place, while I examined this indicator I realized two things:
1) the crosses in the graph are basically the crosses of price through the MA, it's just a fancier and easier representation, specially as we can see how far/strong is the cross through the ATR (this might be explained elsewhere, but I confess I didn't have the time to go through the several pages of the discussion)
2) it only takes in consideration how price moves in the current chart, so doesn't take in consideration "Currency Strength in relation with other currencies" like the "old" CSS worked.

So, since it's just a representation of other common indicators on the current chart (and it's current price movements) and doesn't take other currencies in consideration, this means the principle can be applied to any other chart that is not under the common 8 major currencies we are used to.

But as it is it was not working with anything else besides the pairs that combined the 8 currencies.

So I changed it so it worked with the others. It may not be interesting for the majority of traders to trade EURDKK, for example, but SGDJPY might be interesting for some, so now you can use this indicator on those kind of pairs. Or XAUUSD or XAGUSD. Or US_Oil... Or Sugar/Cotton and others.

Note: The indicator will work the same with the usual pairs, but with the less common ones the lines will be both the same color (White as default) that can be also changed in the parameters, right below the others.

Note 2: I didn't test with everything, but worked with AUS200, US_OIL, UKOIL, XAG/XAUUSD, SGDJPY and EURDKK, so I guess it works with others too.

I hope it helps someone dealing with... Beans, or whatever!
You do not have the required permissions to view the files attached to this post.
User avatar
gprince66
Trader
Posts: 73
Joined: Tue Jan 12, 2016 7:15 am
Location: Austin, TX USA

BALUDA'S SUPER CSS-2.0. THE SIMPLEST TRADING SYSTEM EVER

Post by gprince66 »

Steve is using monthly weekly daily, can a warning system be set up that if three time periods agree it sends a signal? For example monthly and weekly are sells and when daily crosses down it sends a signal.
Hi all,

Here is version 2.2 with two new alerts and some cleaned up code. The details are listed below.

Nice work VirtualFM, really like the 'exotic' pairs option, will definitely get this in the next version.

Keep the ideas and suggestions coming. :good:

Good luck trading,

Gary

-------

1. MTF Agree Alerts
The alert works when three time frames agree and the 'regulator' TF did a cross.
So, the alerts will fire if timeFrame does a cross and extraTimeFrame and extraTimeFrame2 agree with cross direction. timeFrame is the regulator, so alerts will only fire on a new bar for this TF.

2. Exit alerts
Exit buy = cross down level +2.0
Exit sell = cross up level -2.0

3. Improved 'NewBar' code
Thanks to renexxxx
Can now handle multiple ticks per second

----

Update. added VirtualFM's code
.
You do not have the required permissions to view the files attached to this post.
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.

BALUDA'S SUPER CSS-2.0. THE SIMPLEST TRADING SYSTEM EVER

Post by SteveHopwood »

Fantastic stuff Gary. Thanks. :clap: :clap: :clap: :clap: :clap: :clap:

: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.
illiquid
Posts: 7
Joined: Fri Mar 04, 2016 7:51 am

BALUDA'S SUPER CSS-2.0. THE SIMPLEST TRADING SYSTEM EVER

Post by illiquid »

Hey Gary, thank you for this real great tool! :good:

Is it possible to build in 2 additional background colors showing if the lines are diverging/get together compared to the last close?
User avatar
gprince66
Trader
Posts: 73
Joined: Tue Jan 12, 2016 7:15 am
Location: Austin, TX USA

BALUDA'S SUPER CSS-2.0. THE SIMPLEST TRADING SYSTEM EVER

Post by gprince66 »

illiquid » Wed Oct 12, 2016 5:59 am wrote:Hey Gary, thank you for this real great tool! :good:

Is it possible to build in 2 additional background colors showing if the lines are diverging/get together compared to the last close?
Thanks for the kind words guys but Bob and Baluda are the real genius behind this indicator, I simply rearranged the code to get the alerts and arrows working. :D

illiquid:

There are three background colors... colorDifferenceUp, Dn, Lo. The Lo bkgd is the difference in slope lines and will not display if differenceThreshold is set to 0.0. I prefer diff=0.1 so I get the 'Lo' color when a candle closes and the threshold is below 0.1.

Gary
Post Reply

Return to “BALUDA'S SUPER CSS-2.0. THE SIMPLEST TRADING SYSTEM EVER”