Baluda.superslopev2.2
I use MPTM and move stop to b/e at +5
TDesk User Indicators Playground
-
littlereddot
- Posts: 5
- Joined: Sat May 06, 2017 4:07 pm
TDesk User Indicators Playground
lbs48 » Wed Oct 24, 2018 7:19 pm wrote:REQ:
Hi all.
I try find any filter for better entry timing.
I have to much entry at an inappropriate time - see attached.
I think that Hurst (e.g.) can be filter bad timing entry.
Can some coder wizard on SHF modify attached indi for work MTF with TDesk and Desky please?
Many thanks in advance.
Lubos
Hi Lubos
I've been studying the HGI with Hurst discussion and it so happened I did a quick and dirty hack today of the indicator today for my own testing. The modified indicator appears to work as it should but since I'm not a really good coder there might be bugs that I've overlooked. Happy for you to see if it helps you. Let me know if you notice any bugs.
Cheers
littlereddot
You do not have the required permissions to view the files attached to this post.
-
tgm0
- Trader
- Posts: 22
- Joined: Fri Jul 28, 2017 4:18 pm
TDesk User Indicators Playground
I had some demoes running with Experimental version 1x where I had set different Slope Inputs on 3 different TimeFrames. I wanted to try and see If I could do the same using TDesk and initially I was loading 3 iterations of tomele’s version of Baluda SuperSlope TD and configuring each one of them to run only 1 timeframe with the settings I wanted.
I got tired of it and decided to modify the indicator in order to have the possibility to independently set Slope Inputs on the different TimeFrames.
From what I have seen so far, this will give more flexibility at the time of fine tuning your entry and exit signals.
I am using this modified version since a couple of weeks and so far so good, but please take a look under the hood to see if I did it right; I’m no real coder like you guys, just an amateur enjoying tying to be in my spare time…
Here is the code.
I got tired of it and decided to modify the indicator in order to have the possibility to independently set Slope Inputs on the different TimeFrames.
From what I have seen so far, this will give more flexibility at the time of fine tuning your entry and exit signals.
I am using this modified version since a couple of weeks and so far so good, but please take a look under the hood to see if I did it right; I’m no real coder like you guys, just an amateur enjoying tying to be in my spare time…
Here is the code.
You do not have the required permissions to view the files attached to this post.
-
FxFoil
- Trader
- Posts: 42
- Joined: Wed Dec 07, 2011 5:40 am
TDesk User Indicators Playground
Many thanks. I have been hoping someone would code this. Would you consider adding the code found in SPB:tgm0 » Wed Nov 07, 2018 7:34 am wrote:I had some demoes running with Experimental version 1x where I had set different Slope Inputs on 3 different TimeFrames. I wanted to try and see If I could do the same using TDesk and initially I was loading 3 iterations of tomele’s version of Baluda SuperSlope TD and configuring each one of them to run only 1 timeframe with the settings I wanted.
I got tired of it and decided to modify the indicator in order to have the possibility to independently set Slope Inputs on the different TimeFrames.
From what I have seen so far, this will give more flexibility at the time of fine tuning your entry and exit signals.
I am using this modified version since a couple of weeks and so far so good, but please take a look under the hood to see if I did it right; I’m no real coder like you guys, just an amateur enjoying tying to be in my spare time…
Here is the code.
extern double LtfSsSlopeBuyAbove=1;
extern double LtfSsSlopeSellBelow=-1;
Thanks again
-
tgm0
- Trader
- Posts: 22
- Joined: Fri Jul 28, 2017 4:18 pm
TDesk User Indicators Playground
Hello FxFoil.FxFoil » Tue Nov 06, 2018 10:57 pm wrote: Many thanks. I have been hoping someone would code this.
Would you consider adding the code found in SPB:
extern double LtfSsSlopeBuyAbove=1;
extern double LtfSsSlopeSellBelow=-1;
Thanks again
I forgot I added that logic as well when I changed the code.
If I got it right it should be working just fine, but as I said before , should some real coder take a look and double chek my doing it will not hurt.
As in your example, if you set TF1_levelCrossValue=1 it will send a long signal for slope values bigger then 1 and a sell signal for values lower then -1 and so on for the next 2 TF if you decide to use them at all.
TDesk signals gets triggered by these lines of code:
Code: Select all
//TDesk code
if(SendTDeskSignals)
{
if((Slope1[i] > TF1_differenceThreshold*0.5) && (Slope1[i] > TF1_levelCrossValue)) s1=LONG; else
if((Slope1[i] < -TF1_differenceThreshold*0.5) && (Slope1[i] < -TF1_levelCrossValue)) s1=SHORT; else s1=FLAT;
if((Slope_2 > TF2_differenceThreshold*0.5) && (Slope_2 > TF2_levelCrossValue)) s2=LONG; else
if((Slope_2 < -TF2_differenceThreshold*0.5) && (Slope_2 < -TF2_levelCrossValue)) s2=SHORT; else s2=FLAT;
if((Slope_3 > TF3_differenceThreshold*0.5) && (Slope_3 > TF3_levelCrossValue)) s3=LONG; else
if((Slope_3 < -TF3_differenceThreshold*0.5) && (Slope_3 < -TF3_levelCrossValue)) s3=SHORT; else s3=FLAT;
if(s1!=l1 && NoOfTimeFrames>0) {PublishTDeskSignal("SS-1",(ENUM_TIMEFRAMES)userTimeFrame1,Symbol(),s1); l1=s1;}
if(s2!=l2 && NoOfTimeFrames>1) {PublishTDeskSignal("SS-2",(ENUM_TIMEFRAMES)userTimeFrame2,Symbol(),s2); l2=s2;}
if(s3!=l3 && NoOfTimeFrames>2) {PublishTDeskSignal("SS-3",(ENUM_TIMEFRAMES)userTimeFrame3,Symbol(),s3); l3=s3;}
}-
lbs48
- Trader
- Posts: 106
- Joined: Thu May 22, 2014 8:02 am
- Location: Prague, Czech Republic
TDesk User Indicators Playground
Hi LRD.littlereddot » Tue Nov 06, 2018 2:30 pm wrote:lbs48 » Wed Oct 24, 2018 7:19 pm wrote: Hi Lubos
I've been studying the HGI with Hurst discussion and it so happened I did a quick and dirty hack today of the indicator today for my own testing. The modified indicator appears to work as it should but since I'm not a really good coder there might be bugs that I've overlooked. Happy for you to see if it helps you. Let me know if you notice any bugs.
Cheers
littlereddot
Many thanks for your Hurst indi modification and sharing.
I will try it and share my experience.
I think, that current TF working correct. But MTF does not look very good.
Cheers
Lubos
You do not have the required permissions to view the files attached to this post.
- rapple
- Trader
- Posts: 277
- Joined: Fri Feb 21, 2014 10:56 pm
- Location: Sydney, Australia
TDesk User Indicators Playground
Dear all
I noted on the FXTestify website that Slopey Candle Bob (SCB, SCaB) is going very well
Based on these results I set up SCB to work with TDesk and Desky where SCB just sends the the signals to TDesk and Desky looks after the trade management. I also included H4 Peaky...
As you can see the results look promising.
Based on these preliminary results would anyone be willing to create a TDesk compatible 'Candle Direction Indicator' similar to that used by SCB where you can set the number of candles for a BUY/SELL and also the timeframe.
Kind regards Richard
ps...TDesk/Desky are just AWESOME!!!!!!!!!

I noted on the FXTestify website that Slopey Candle Bob (SCB, SCaB) is going very well
Based on these results I set up SCB to work with TDesk and Desky where SCB just sends the the signals to TDesk and Desky looks after the trade management. I also included H4 Peaky...
As you can see the results look promising.
Based on these preliminary results would anyone be willing to create a TDesk compatible 'Candle Direction Indicator' similar to that used by SCB where you can set the number of candles for a BUY/SELL and also the timeframe.
Kind regards Richard
ps...TDesk/Desky are just AWESOME!!!!!!!!!
You do not have the required permissions to view the files attached to this post.
- SteveHopwood
- Owner
- Posts: 9904
- Joined: Tue Nov 15, 2011 8:43 am
- Location: Misterton - an insignificant village in England. Very pleasant to live in.
TDesk User Indicators Playground
Isn't this what I am already doing? http://www.stevehopwoodforex.com/phpBB3 ... 84#p164184rapple » Thu Nov 08, 2018 11:23 pm wrote:Dear all
I noted on the FXTestify website that Slopey Candle Bob (SCB, SCaB) is going very well
Based on these results I set up SCB to work with TDesk and Desky where SCB just sends the the signals to TDesk and Desky looks after the trade management. I also included H4 Peaky...
As you can see the results look promising.
Based on these preliminary results would anyone be willing to create a TDesk compatible 'Candle Direction Indicator' similar to that used by SCB where you can set the number of candles for a BUY/SELL and also the timeframe.
Kind regards Richard
ps...TDesk/Desky are just AWESOME!!!!!!!!!![]()
![]()
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.
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.
- rapple
- Trader
- Posts: 277
- Joined: Fri Feb 21, 2014 10:56 pm
- Location: Sydney, Australia
TDesk User Indicators Playground
Yep...Sorry about that Steve. I will now concentrate on XY42Isn't this what I am already doing?
Cheers Richard
-
lbs48
- Trader
- Posts: 106
- Joined: Thu May 22, 2014 8:02 am
- Location: Prague, Czech Republic
TDesk User Indicators Playground
REQ.:
Hi dear traders.
Can some one of you coders, modify QQE indicator to be comaptible with TDesk if it seems useful to you?
I presume that can be useful for trigger and/or for filtering.
Idea is:
BUY when blue line cross red line up above level 50
SELL when blue line cross red line down below level 50
When blue line cross red (or blue ?) line up below level 50, is FLAT and vice versa.
Level 50 filter can by set true/false.
See attached charts.
Thanks a lot in advance.
Nice weekend to all.
lbs
Hi dear traders.
Can some one of you coders, modify QQE indicator to be comaptible with TDesk if it seems useful to you?
I presume that can be useful for trigger and/or for filtering.
Idea is:
BUY when blue line cross red line up above level 50
SELL when blue line cross red line down below level 50
When blue line cross red (or blue ?) line up below level 50, is FLAT and vice versa.
Level 50 filter can by set true/false.
See attached charts.
Thanks a lot in advance.
Nice weekend to all.
lbs
You do not have the required permissions to view the files attached to this post.