TDesk User Indicators Playground

User avatar
opita
Trader
Posts: 67
Joined: Tue Mar 20, 2012 10:10 am

TDesk User Indicators Playground

Post by opita »

traderduke » Tue Sep 21, 2021 4:38 pm wrote:Hi everyone
I have been trying to get this in
indicator working in USD but so far not working.

Any help would be appreciated

I can't seem to determine the buffer number for the buy and sell
Try this...

Remember there is a space at the end of the name.
You do not have the required permissions to view the files attached to this post.
Cheer,

:youknow:

----
Opita
User avatar
traderduke
Trader
Posts: 306
Joined: Mon Nov 28, 2011 7:30 pm
Location: East Coast USA

TDesk User Indicators Playground

Post by traderduke »

opita » Tue Sep 21, 2021 8:43 pm wrote:
traderduke » Tue Sep 21, 2021 4:38 pm wrote:Hi everyone
I have been trying to get this in
indicator working in USD but so far not working.

Any help would be appreciated

I can't seem to determine the buffer number for the buy and sell
Try this...

Remember there is a space at the end of the name.

Thank you for the help I'll check it out. I only wish I had the source code.

Thanks again

PSS: this indicator repaints. Buffer 0 = up arrow, 1 = Dn arrow, 2 = 0 or 1
thanks again for realizing there is a space at the end of the name.
Last edited by traderduke on Thu Sep 23, 2021 2:14 pm, edited 1 time in total.
SilverTrader

TDesk User Indicators Playground

Post by SilverTrader »

Hi

This indicator looks to be similar and the source code is below as an attachment, hopefully it can replace the one you have above and give you similar or better results.
Personally use it on H4 timeframe with signalgap = 7 and dist = 24.

I hope it helps you.
You do not have the required permissions to view the files attached to this post.
lemur6666
Trader
Posts: 69
Joined: Mon Nov 27, 2017 8:29 am

TDesk User Indicators Playground

Post by lemur6666 »

traderduke, Thank You for sharing Beast indicator with us. I have setup up Tdesk with Beast on M15/H4. It seems to have legs. I will keep you informed how it will do. So far its 115 pips up for a today. :popcorn:
lemur6666
Trader
Posts: 69
Joined: Mon Nov 27, 2017 8:29 am

TDesk User Indicators Playground

Post by lemur6666 »

SilverTrader » Thu Sep 23, 2021 4:26 am wrote:Hi

This indicator looks to be similar and the source code is below as an attachment, hopefully it can replace the one you have above and give you similar or better results.
Personally use it on H4 timeframe with signalgap = 7 and dist = 24.

I hope it helps you.
Maybe Coincidence and unfortunately, There is a heavy/lag (or repainting if you will) in this one. Problem lies with the fact that there is an offset in IHighest, therfore you are dist/2 bars behind. In other words you will be in dist/2 bars from now if high/low has been formed. (12 bars by default).

Code: Select all

hhb = iHighest(NULL,0,MODE_HIGH,dist,i-dist/2);
      llb = iLowest(NULL,0,MODE_LOW,dist,i-dist/2);

      if (i==hhb) { b1[i]=High[hhb]+SignalGap*Point; }
      if (i==llb) { b2[i]=Low[llb] -SignalGap*Point; } 
I have dozens versions of this one, it comes by different name too for example : Super-Signals,
User avatar
traderduke
Trader
Posts: 306
Joined: Mon Nov 28, 2011 7:30 pm
Location: East Coast USA

TDesk User Indicators Playground

Post by traderduke »

lemur6666 » Thu Sep 23, 2021 2:13 am wrote:
SilverTrader » Thu Sep 23, 2021 4:26 am wrote:Hi

This indicator looks to be similar and the source code is below as an attachment, hopefully it can replace the one you have above and give you similar or better results.
Personally use it on H4 timeframe with signalgap = 7 and dist = 24.

I hope it helps you.
Maybe Coincidence and unfortunately, There is a heavy/lag (or repainting if you will) in this one. Problem lies with the fact that there is an offset in IHighest, therfore you are dist/2 bars behind. In other words you will be in dist/2 bars from now if high/low has been formed. (12 bars by default).

Code: Select all

hhb = iHighest(NULL,0,MODE_HIGH,dist,i-dist/2);
      llb = iLowest(NULL,0,MODE_LOW,dist,i-dist/2);

      if (i==hhb) { b1[i]=High[hhb]+SignalGap*Point; }
      if (i==llb) { b2[i]=Low[llb] -SignalGap*Point; } 
I have dozens versions of this one, it comes by different name too for example : Super-Signals,
read my edited post about the beast, be careful!
User avatar
traderduke
Trader
Posts: 306
Joined: Mon Nov 28, 2011 7:30 pm
Location: East Coast USA

TDesk User Indicators Playground

Post by traderduke »

lemur6666 » Thu Sep 23, 2021 1:39 am wrote:traderduke, Thank You for sharing Beast indicator with us. I have setup up Tdesk with Beast on M15/H4. It seems to have legs. I will keep you informed how it will do. So far its 115 pips up for a today. :popcorn:
That's great, :yahoo: Any chance you can share the tp's. The beast seems to repaint much less on higher TFs.

many pips to all
User avatar
Wavegarrick
Trader
Posts: 1172
Joined: Sun Dec 30, 2012 11:21 am
Location: South Africa

TDesk User Indicators Playground

Post by Wavegarrick »

Hi Guys,
I have made the following indicator Ubd compatible:
3-1-BB macd nrp - mtf + alerts.mq4
What it looks like on the chart AudUsd, Bottom 3 sub-windows.
Screenshot_1448.png
What it looks like on Tdesk:
Screenshot_1447.png
It seems correct, here's the set file:
UBD BB Macd Nrp.set
I would appreciate it if some experienced coder can look over the set file to see if I missed anything.
Many thanks,
Leon
You do not have the required permissions to view the files attached to this post.
ChuFXLife
Trader
Posts: 12
Joined: Tue Jun 05, 2012 5:11 pm

TDesk User Indicators Playground

Post by ChuFXLife »

Hello All,
I have sought to see a TDesk drone for these indicators without success.
I would really appreciate any assistance with this.
Thanks
Chux
You do not have the required permissions to view the files attached to this post.
User avatar
WorldsEnd
Trader
Posts: 97
Joined: Fri Aug 29, 2014 7:36 pm

TDesk User Indicators Playground

Post by WorldsEnd »

Guys, I‘m using SS_SupportResistance_v07 which is working fine with TDesk. I‘m just wondering how often the signal/chart refreshes. Is there a line in the code where I should have a look?
Post Reply

Return to “TDesk: A Thomas Special. The greatest trading tool ever.”