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
gunaydines
Trader
Posts: 21
Joined: Tue May 23, 2017 5:34 am

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

Post by gunaydines »

c1borg » Thu Mar 15, 2018 6:54 am wrote:I would like to export the historical SS value for a currency into Excel for an experiment I am doing (not back testing in Craperquotes) so I can have Open High Low Close SSVal going back daily or by timeframe for an individual currency pair shown on the charts example GBPUSD pair GBP: 0.5332 which is the value of the signal line. Is this possible?
Dear c1borg,

Please check http://www.stevehopwoodforex.com/phpBB3 ... 45#p160445.

I hope it works for you.

Cheers,

Emre
I NEVER GIVE UP
marktaylorza
Trader
Posts: 10
Joined: Sun Aug 10, 2014 9:35 pm
Location: Cape Town, South Africa

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

Post by marktaylorza »

Hi Chaps,

Would it be possible to allow this indicator to work with the below pairs. I found a broker that supports the below pairs.
ETHUSD
ETCUSD
BTCUSD

Cheers,

Mark
User avatar
SteveHopwood
Owner
Posts: 9754
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 »

marktaylorza » Wed Aug 08, 2018 6:34 pm wrote:Hi Chaps,

Would it be possible to allow this indicator to work with the below pairs. I found a broker that supports the below pairs.
ETHUSD
ETCUSD
BTCUSD

Cheers,

Mark
Paul is one of the kindest, most polite members of SHF, so I am curious to see how, or if, he replies. I know what you would get from me in similar circumstances.

In the meantime, wouldn't be prepared to cut out the bollocks and use the indi for its intended use would you? It really is quite good. Truly. I promise.

:xm: :rocket:
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. [email protected] 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.
VirtualFM
Trader
Posts: 81
Joined: Sat Apr 28, 2012 3:45 am

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

Post by VirtualFM »

marktaylorza » Wed Aug 08, 2018 7:34 pm wrote:Hi Chaps,

Would it be possible to allow this indicator to work with the below pairs. I found a broker that supports the below pairs.
ETHUSD
ETCUSD
BTCUSD
What is it that is not working for you?

The indicator works with any pair (including exotic ones) or instrument, including CFDs and Commodities. The lines will be the same colour, but the colour zones and the important stuff (Threshold, Cross Values) will be calculated the same and as useful to take your decisions.
User avatar
tomele
Administrator
Posts: 1166
Joined: Tue May 17, 2016 3:40 pm
Location: Germany, Forest of Odes, Defending the Limes

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

Post by tomele »

Hi @all.

When working on SuperSlope to make it TDesk-compatible and playing with it, I noticed that setting EveryTickMode to false didn't work. The indi still updated on every tick.

IMHO lines 617-620 are culprit. Commenting them out solved the problem. The code looks like this:

Code: Select all

bool IsNewReadTime() 
{
   bool NewReadTime = false;
   bool IsReadEveryNewBar = false;
   
   if(userEveryTickMode)
   {
      NewReadTime = true;
   }
   else
   {
	   if(userReadEveryNewBar)
      {
	      if(lastBarTime < iTime(_Symbol, _Period, 0))
		   {
		      lastBarTime = iTime(_Symbol, _Period, 0) + 1;
              IsReadEveryNewBar = true;
		   }
      }
      //else
      //{
      //   IsReadEveryNewBar = true;
      //}
      
	  if(nextReadTime <= TimeCurrent() || IsReadEveryNewBar)
      {
         nextReadTime = TimeCurrent() + userReadEveryXSeconds;   	  
         NewReadTime = true;    
      }
   }
   
   return(NewReadTime); 
   
}//IsNewReadTime()
I also applied a little fix for the sometimes overlayed labels on the right side. I added this to OnInit():

Code: Select all

   //Fix for the overlayed labels by tomele
   for(i=ObjectsTotal()-1;i>=0;i--)
   {
      if(StringFind(ObjectName(i),"css_obj",0)>0)
      {
         ObjectDelete(ObjectName(i));
      }
   }

Cheers
Thomas
Happy pippin, Thomas :-BD

It ain't what you don't know that gets you into trouble.
It's what you know for sure that just ain't so.
(Mark Twain)

Keep the coder going: Donate
User avatar
c1borg
Trader
Posts: 454
Joined: Sun Aug 14, 2016 5:09 pm

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

Post by c1borg »

Can a member with a few spare minutes who understands the Baluda indy please explain the following settings
Capture.PNG
Any help greatly appreciated :smile:
You do not have the required permissions to view the files attached to this post.
User avatar
dap711
Trader
Posts: 204
Joined: Mon Aug 08, 2016 8:27 pm
Location: Oklahoma City, Oklahoma USA

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

Post by dap711 »

differenceThreshold = When to send alert. Will send alert when this +/- level is crossed. Should be set to 0.
levelCrossValue = The lines above/below 0. Should be set to 2.0 as this is were you will see price movement the best.

Two indicators are used to calculate Super Slope. Moving Average (SlopeMAPeriod) and ATR (SlopeATRPeriod) These settings are the number of periods to use with each indicator.


c1borg » Wed Sep 19, 2018 11:48 am wrote:Can a member with a few spare minutes who understands the Baluda indy please explain the following settings
Any help greatly appreciated :smile:
User avatar
c1borg
Trader
Posts: 454
Joined: Sun Aug 14, 2016 5:09 pm

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

Post by c1borg »

dap711 » Wed Sep 19, 2018 7:47 pm wrote:differenceThreshold = When to send alert. Will send alert when this +/- level is crossed. Should be set to 0.
levelCrossValue = The lines above/below 0. Should be set to 2.0 as this is were you will see price movement the best.

Two indicators are used to calculate Super Slope. Moving Average (SlopeMAPeriod) and ATR (SlopeATRPeriod) These settings are the number of periods to use with each indicator.


c1borg » Wed Sep 19, 2018 11:48 am wrote:Can a member with a few spare minutes who understands the Baluda indy please explain the following settings
Any help greatly appreciated :smile:
Many thanks :hi:
lotv
Trader
Posts: 15
Joined: Mon May 06, 2013 2:18 am
Location: Perth ,west Australia.

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

Post by lotv »

Hello Bob, Great job ,like all the others very very grateful..... Earlier in the thread you thought 28 pairs for this system was too much and you thought 12 pairs would be the way to go.... could you share the pairs that you would use ???? thanks Bob in advance.. Bill.
jimbol999
Posts: 7
Joined: Wed Jan 08, 2014 7:38 am

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

Post by jimbol999 »

this is easier than pacman.
thank you for your hard work, appreciate it.
:clap: :clap: :clap:
Post Reply

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