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

The Beast stirs. He's got a slope.
https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?t=698
Page 5 of 24
Author:  macman [ Sat Jul 14, 2012 8:38 am ]
Post subject:  Re: The Beast stirs. He's got a slope.

The_Snowman wrote:A derogatory term/slur ..... Describing the slope of their eyes
SteveHopwood wrote:....... Thanks snowman. You have opened my eyes a bit more.
:lol:
To all you students of the great man out there - does this count as a 'Freudian Slip' ? ....
Author:  mobthehop [ Sat Jul 14, 2012 9:05 am ]
Post subject:  Re: The Beast stirs. He's got a slope.

lol.....
Author:  MarcelloT [ Sat Jul 14, 2012 10:12 am ]
Post subject:  Re: The Beast stirs. He's got a slope.

Hi, I also use THE BEAST - live account ...
Please find attached my settings ......
Author:  DING [ Sat Jul 14, 2012 11:25 am ]
Post subject:  Re: The Beast stirs. He's got a slope.

I wonder the beast was based on counter trend strategy that how to combine trend indicator to cowork,
How will you set the slope fillter to trading? :?:
Author:  SteveHopwood [ Sat Jul 14, 2012 11:40 am ]
Post subject:  Re: The Beast stirs. He's got a slope.

DING wrote:I wonder the beast was based on counter trend strategy that how to combine trend indicator to cowork,
Yes, it was.
How will you set the slope fillter to trading? :?:
This is why I included the option to turn it off for counter-trend trading. A move to the lowest line signals a ct buy, so Slope is unlikely to be >= 0.4 by then; we shall have to see.

I assume Slope will be most useful when trading the white box, trading the exit of the box in the direction indicated by Slope.

All this is experimental and may come to nothing. We shall have to see.

:D
Author:  FreddyFX [ Sat Jul 14, 2012 12:39 pm ]
Post subject:  Re: The Beast stirs. He's got a slope.

Steve.

I don't know exactly how it feels to be an addict, but you always have this fatal attraction on me with your material.
Proud to be part of this ALL.

Wanted to take this weekend off, guess maybe next weekend....lol !!!
Author:  SteveHopwood [ Sat Jul 14, 2012 1:06 pm ]
Post subject:  Re: The Beast stirs. He's got a slope.

FreddyFX wrote:Steve.

I don't know exactly how it feels to be an addict, but you always have this fatal attraction on me with your material.
Proud to be part of this ALL.

Wanted to take this weekend off, guess maybe next weekend....lol !!!
Hehe. I had no lessons yesterday and have none today - got one hell of a tomorrow to make up for them. :lol:

So, officially I have two days off. Have I spent them chilling? Sitting in the garden with a bottle? Nope. I have spent them coding. Hey ho.

:D
Author:  garyfritz [ Sat Jul 14, 2012 1:42 pm ]
Post subject:  Re: The Beast stirs. He's got a slope.

We are all addicts of one type or another...

I wondered how slope would apply to the Beast's CT trading. Thanks for the clarification.
Author:  SteveHopwood [ Sat Jul 14, 2012 4:13 pm ]
Post subject:  Re: The Beast stirs. He's got a slope.

V 1a is in post 1.

I saw why SB had placed a sell stop when Slope was buy and hold, and a sell stop when sell and hold, as soon as I looked at the code. It was a logic bloop. Those of you who can, simply copy/paste this over the top of the existing function:

Code: Select all

bool CheckSlope(int type)
{
   //Called from any point in the code that is about to send a trade, and cancels the trade if Slope does not agree
   
   if (HtfTimeFrame == 0 && LtfTimeFrame == 0) return(true);//Slope not being used
   
   if (type == OP_BUY)
   {
         if (HtfTimeFrame > 0 && (HtfSlopeTrend != buyonly && HtfSlopeTrend != buyhold)) return(false);
         if (LtfTimeFrame > 0 && (LtfSlopeTrend != buyonly && LtfSlopeTrend != buyhold)) return(false);
   }//if (type == OP_BUY)
   
   if (type == OP_SELL)
   {
         if (HtfTimeFrame > 0 && (HtfSlopeTrend != sellonly && HtfSlopeTrend != sellhold)) return(false);
         if (LtfTimeFrame > 0 && (LtfSlopeTrend != sellonly && LtfSlopeTrend != sellhold)) return(false);
   }//if (type == OP_BUY)


   //Got this far, so Slope must be ok
   return(true);
}//bool CheckSlope(int typ
Also change the version variable to 1a at the top of the file.

:D
Author:  Pippopotamus [ Sat Jul 14, 2012 4:15 pm ]
Post subject:  Re: The Beast stirs. He's got a slope.

Surprised to see that with default settings Max,"sixths,"are preferred to ChaserL,"sixths." Morgb, can you explain?
All times are UTC Page 5 of 24