TILSON T3 INDICATOR FOR MT4 BY YISRAEL

1
HI GUYS I AM A NOOB TO THIS PLATFORM, BUT I GOT SOME YEARS UNDER MY BELT IN THE FOREX WORLD...AND I GIVE YOU GIFTS

//------------------
THE FOLLOWING PARAGRAPH IS GOING TO BE THE SAME FOR THE NEXT POSTS:
SO WHAT DID IS TO DEVELOP A SYSTEM THAT HAS A 55% win rate AND IT GAVE ME A LOW RETURN RATE IN A YEAR(SCULPTING MODE)...
I KNOW PRETTY DISAPPOINTING. THE SYSTEM DIDN'T WORK CAUSE THERE WAS A LOT OF ENTRY INDICATORS THAT I USED AND THEY CONFLICLICTED EACH OTHER
...SO THIS IS WHY MY SYSTEM DIDN'T WORK.
SO AFTER THAT, I WILL SHARE THE INDICATORS THAT AT TRANSFERRED THE CODE FROM PINE SCRIPT TO MQ4 PROGRAMS FOR MT4.
I WILL BE RELEASING THEM WHENEVER I FEEL LIKE....SO DONT GET HYPED
THE INDICATOR LIST IS...TILSON T3, MONSTER BREAKOUT, ULTIMATE TRADE OSCILLATOR, REDK-TPX, EXERTION METER, SQUEEZE RANGE FILTER(THE LAST IS MY INVENTION)
ENDING: ALL THE INDICATORS ARE MODIFIED TO FIT THE MT4 STYLE

//--------------------

SO WHAT IS THIS TILSON T3 ...AS I UNDERSTAND IT IT IA A SUPER SMOOTHED EMA ....IT FOLLOWS THE PRICE CLOSLY..IT HAS A HIGH WIN RATE IF IT...
IS USED AS AN ENTRY INDICATOR ....WHEN YOU SEE GREEN YOU GO LONG, WHEN YOU SEE RED YOU GO SHORT.
SOME OF ITS PERKS IS THAT,,
1 IT IS SMOOTH AND NOT SPIKY AS A SMA
2 PRICE STAYS PARALLEL TO THE TILSON T3
3 DOESNT GET WHIPSAWED CAUSE IT THAT IT COLORING THAT SAVES IT

Code: Select all


//--- input parameters

#property indicator_buffers 3
#property indicator_color1 clrAqua//clrAqua
#property indicator_color2 clrRed
#property indicator_color3 clrLime


input int      t3_lenght=8;
input double   volume_factor=0.7;
//--- indicator buffers
double         t3Buffer[];
double         t3_bearishBuffer[];
double         t3_bulllishBuffer[];

double databuffer[];
double e1[] ;
double e2[] ;
double e3[] ;
double e4[] ;
double e5[] ;
double e6[] ;
double c1 ;
double c2 ;
double c3 ;
double c4 ;
double T3 ;



//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int OnInit()
  {
//--- indicator buffers mapping
   IndicatorBuffers(10);
   SetIndexBuffer(0,t3Buffer);
   SetIndexBuffer(1,t3_bearishBuffer);
   SetIndexBuffer(2,t3_bulllishBuffer);
   SetIndexBuffer(3,databuffer);
   SetIndexBuffer(4,e1);
   SetIndexBuffer(5,e2);
   SetIndexBuffer(6,e3);
   SetIndexBuffer(7,e4);
   SetIndexBuffer(8,e5);
   SetIndexBuffer(9,e6);
   
   
   string short_name;
   short_name="tilson T3 ("+string(t3_lenght)+","+string(volume_factor)+")";
   IndicatorShortName(short_name);
   SetIndexLabel(0,short_name);
   
   
   IndicatorDigits(6);
   SetIndexStyle(0,DRAW_LINE);
   SetIndexStyle(1,DRAW_ARROW);
   SetIndexStyle(2,DRAW_ARROW);
   SetIndexArrow(1,SYMBOL_STOPSIGN);
   SetIndexArrow(2,SYMBOL_STOPSIGN);
   
    
   
//---
   return(INIT_SUCCEEDED);
  }
//+------------------------------------------------------------------+
//| Custom indicator iteration function                              |
//+------------------------------------------------------------------+
int OnCalculate(const int rates_total,
                const int prev_calculated,
                const datetime &time[],
                const double &open[],
                const double &high[],
                const double &low[],
                const double &close[],
                const long &tick_volume[],
                const long &volume[],
                const int &spread[])
  {
//---




int counted_bars = IndicatorCounted();
   if(counted_bars < 0)  return(-1);
   if(counted_bars > 0)   counted_bars--;
   int limit = Bars - counted_bars;
   if(counted_bars==0) limit--;


for(int i=limit;i>=0;i--)
{
   int period_of_t3=(rates_total-i)<t3_lenght? rates_total-i :t3_lenght;

databuffer[i]=(high[i] + low[i] + 2 * close[i]) / 4;
e1[i]=iMAOnArray(databuffer,0,t3_lenght,0,MODE_EMA,i);
e2[i]=iMAOnArray(e1,0,t3_lenght,0,MODE_EMA,i);
e3[i]=iMAOnArray(e2,0,t3_lenght,0,MODE_EMA,i);
e4[i]=iMAOnArray(e3,0,t3_lenght,0,MODE_EMA,i);
e5[i]=iMAOnArray(e4,0,t3_lenght,0,MODE_EMA,i);
e6[i]=iMAOnArray(e5,0,t3_lenght,0,MODE_EMA,i);
c1=-volume_factor*volume_factor*volume_factor;
c2=3*volume_factor*volume_factor+3*volume_factor*volume_factor*volume_factor;
c3=-6*volume_factor*volume_factor-3*volume_factor-3*volume_factor*volume_factor*volume_factor;
c4=1+3*volume_factor+volume_factor*volume_factor*volume_factor+3*volume_factor*volume_factor;
T3=c1*e6[i]+c2*e5[i]+c3*e4[i]+c4*e3[i];
t3Buffer[i]=T3;

if(t3Buffer[i+1]>t3Buffer[i+2])//green
  {t3_bulllishBuffer[i+1]=t3Buffer[i+1];
   t3_bearishBuffer[i+1]=0;
  }
else if (t3Buffer[i+1]<t3Buffer[i+2])//red
  {t3_bearishBuffer[i+1]=t3Buffer[i+1];
  t3_bulllishBuffer[i+1]=0;
  }

}


   
//--- return value of prev_calculated for next call
   return(rates_total);
  }
//+------------------------------------------------------------------+


TILSON T3 IMAGE TILSON T3 IMAGE
These users thanked the author yisrael for the post (total 3):
moey_dw, 太虚一毫, andrei-1
A famous quote in documentary "Money Robots":55% winrate is enough to make money


Re: TILSON T3 INDICATOR FOR MT4 BY YISRAEL

3
josi wrote:
You must be kidding:
I compared your MA (that follows price "really closely") to my MT4 Standard MA -
and it loses every inch of the way.
Being a noob you might want to test any of the MAs by
MrTools, kvak, Banzai (and others) to see what's what:
Okey it may not follow the price so close as a standard ma...but it has other perks
1 it is smoothed and not spiky as ur sma
2 price tends to stay parallel to Tilton t3
3 it's entry is better than any MA breakout stategy
4 it doesn't get whipsawd...as u can see even if the Tilton gets touched, it gets saved by the coloring
A famous quote in documentary "Money Robots":55% winrate is enough to make money

Re: TILSON T3 INDICATOR FOR MT4 BY YISRAEL

4
josi wrote: Thu Dec 09, 2021 8:51 pm You must be kidding:
I compared your MA (that follows price "really closely") to my MT4 Standard MA -
and it loses every inch of the way.
Being a noob you might want to test any of the MAs by
MrTools, kvak, Banzai (and others) to see what's what:
Image
Grifters gonna grift.

Thinks we stoopid.

His whole selling spiel needs attention.

Stay safe out there

Kath
These users thanked the author Kathy McGarry for the post:
andrei-1

Re: TILSON T3 INDICATOR FOR MT4 BY YISRAEL

5
yisrael wrote: Thu Dec 09, 2021 8:14 pm HI GUYS I AM A NOOB TO THIS PLATFORM...BUT I AM HERE TO GIVE YOU MY GIFTS
hi man not sure why u could not post a actual indicator file?? :think: :think: :think:

here i will do it for u............ its not a very good standalone indicator but may be it can work with longer periods to scalp or in high tf like daily & above but thx anyways!!
These users thanked the author moey_dw for the post:
太虚一毫
Official Forex-station GIF animator at your service 👨‍⚖️
See a GIF with Forex-station.com on it? I probably made it
The best divergence indicator in the world.
Real news exists: Infowars.com 👈


Re: TILSON T3 INDICATOR FOR MT4 BY YISRAEL

6
yisrael wrote: Thu Dec 09, 2021 8:14 pm HI GUYS I AM A NOOB TO THIS PLATFORM...BUT I AM HERE TO GIVE YOU MY GIFTS

//------------------
THE FOLLOWING PARAGRAPH IS GOING TO BE THE SAME FOR THE NEXT POSTS:
SO WHAT DID IS TO DEVELOP AN NNFX SYSTEM THAT HAS A 55% win rate AND IT GAVE ME A 29% RETURN IN A YEAR(SCULPTING MODE)...
I KNOW PRETTY DISAPPOINTING . I GOT ALL MY INDICATORS FROM A YOUTUBE CHANNEL CALLED "FOREX ACADEMY"...WHICH THIS PERSON IS TESTING A LOT OF INDICATORS...SADLY HE IS TESTING THEM AS ENTRY INDICATORS....SO THIS IS WHY MY NNFX SYSTEM DIDN'T WORK.
SO AFTER THAT, I WILL SHARE THE INDICATORS THAT AT TRANSFERRED THE CODE FROM THE TRADING VIEW PINE SCRIPT TO MQ4 PROGRAMS FOR MT4.
I WILL RELEASE 1 INDICATOR EVERY WEEK.
THE INDICATOR LIST IS...TILSON T3, MONSTER BREAKOUT, ULTIMATE TRADE OSCILLATOR, REDK-TPX, EXERTION METER, SQUEEZE RANGE FILTER(THE LAST IS MY INVENTION)
ENDING: ALL THE INDICATORS ARE MODIFIED TO FIT THE MT4 STYLE IF THIS GET ENOUGH ATTENTION A WILL RELEASE MY FRANKENSTANE INDICATOR CALLED
EXHAUSTIVE UTOPIA BREAKOUT WHICH I AM DEVELOPING FOR MY NEW SYSTEM.

//--------------------

SO WHAT IS THIS TILSON T3 ...AS I UNDERSTAND IT IT IA A SUPER SMOOTHED EMA ....IT FOLLOWS THE PRICE REALLY CLOSE...IT HAS A 72% WIN RATE IF IT...
IS USED AS AN ENTRY INDICATOR >:( ....WHEN YOU SEE GREEN YOU GO LONG, WHEN YOU SEE RED YOU GO SHORT.

Code: Select all


//--- input parameters

#property indicator_buffers 3
#property indicator_color1 clrAqua//clrAqua
#property indicator_color2 clrRed
#property indicator_color3 clrLime


input int      t3_lenght=8;
input double   volume_factor=0.7;
//--- indicator buffers
double         t3Buffer[];
double         t3_bearishBuffer[];
double         t3_bulllishBuffer[];

double databuffer[];
double e1[] ;
double e2[] ;
double e3[] ;
double e4[] ;
double e5[] ;
double e6[] ;
double c1 ;
double c2 ;
double c3 ;
double c4 ;
double T3 ;



//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int OnInit()
  {
//--- indicator buffers mapping
   IndicatorBuffers(10);
   SetIndexBuffer(0,t3Buffer);
   SetIndexBuffer(1,t3_bearishBuffer);
   SetIndexBuffer(2,t3_bulllishBuffer);
   SetIndexBuffer(3,databuffer);
   SetIndexBuffer(4,e1);
   SetIndexBuffer(5,e2);
   SetIndexBuffer(6,e3);
   SetIndexBuffer(7,e4);
   SetIndexBuffer(8,e5);
   SetIndexBuffer(9,e6);
   
   
   string short_name;
   short_name="tilson T3 ("+string(t3_lenght)+","+string(volume_factor)+")";
   IndicatorShortName(short_name);
   SetIndexLabel(0,short_name);
   
   
   IndicatorDigits(6);
   SetIndexStyle(0,DRAW_LINE);
   SetIndexStyle(1,DRAW_ARROW);
   SetIndexStyle(2,DRAW_ARROW);
   SetIndexArrow(1,SYMBOL_STOPSIGN);
   SetIndexArrow(2,SYMBOL_STOPSIGN);
   
    
   
//---
   return(INIT_SUCCEEDED);
  }
//+------------------------------------------------------------------+
//| Custom indicator iteration function                              |
//+------------------------------------------------------------------+
int OnCalculate(const int rates_total,
                const int prev_calculated,
                const datetime &time[],
                const double &open[],
                const double &high[],
                const double &low[],
                const double &close[],
                const long &tick_volume[],
                const long &volume[],
                const int &spread[])
  {
//---




int counted_bars = IndicatorCounted();
   if(counted_bars < 0)  return(-1);
   if(counted_bars > 0)   counted_bars--;
   int limit = Bars - counted_bars;
   if(counted_bars==0) limit--;


for(int i=limit;i>=0;i--)
{
   int period_of_t3=(rates_total-i)<t3_lenght? rates_total-i :t3_lenght;

databuffer[i]=(high[i] + low[i] + 2 * close[i]) / 4;
e1[i]=iMAOnArray(databuffer,0,t3_lenght,0,MODE_EMA,i);
e2[i]=iMAOnArray(e1,0,t3_lenght,0,MODE_EMA,i);
e3[i]=iMAOnArray(e2,0,t3_lenght,0,MODE_EMA,i);
e4[i]=iMAOnArray(e3,0,t3_lenght,0,MODE_EMA,i);
e5[i]=iMAOnArray(e4,0,t3_lenght,0,MODE_EMA,i);
e6[i]=iMAOnArray(e5,0,t3_lenght,0,MODE_EMA,i);
c1=-volume_factor*volume_factor*volume_factor;
c2=3*volume_factor*volume_factor+3*volume_factor*volume_factor*volume_factor;
c3=-6*volume_factor*volume_factor-3*volume_factor-3*volume_factor*volume_factor*volume_factor;
c4=1+3*volume_factor+volume_factor*volume_factor*volume_factor+3*volume_factor*volume_factor;
T3=c1*e6[i]+c2*e5[i]+c3*e4[i]+c4*e3[i];
t3Buffer[i]=T3;

if(t3Buffer[i+1]>t3Buffer[i+2])//green
  {t3_bulllishBuffer[i+1]=t3Buffer[i+1];
   t3_bearishBuffer[i+1]=0;
  }
else if (t3Buffer[i+1]<t3Buffer[i+2])//red
  {t3_bearishBuffer[i+1]=t3Buffer[i+1];
  t3_bulllishBuffer[i+1]=0;
  }

}


   
//--- return value of prev_calculated for next call
   return(rates_total);
  }
//+------------------------------------------------------------------+


G'day friend

Appreciate your contribution (2 posts) bearing gifts.

Straight off the bat you introduce 1 indie, with promises of more to come .....I would wager a guess ....after you convince prospective traders to join your exclusive club.

Here at Forex Station we are content and happy. What you probably have to offer, is already here.

Not being nasty, just sayin' "not picking up what you putting down"

Have an awesome weekend

Kath
These users thanked the author Kathy McGarry for the post (total 3):
rudiarius, Jimmy, moey_dw

Re: TILSON T3 INDICATOR FOR MT4 BY YISRAEL

7
Kathy McGarry wrote: Thu Dec 09, 2021 10:01 pm G'day friend

Appreciate your contribution (2 posts) bearing gifts.

Straight off the bat you introduce 1 indie, with promises of more to come .....I would wager a guess ....after you convince prospective traders to join your exclusive club.

Here at Forex Station we are content and happy. What you probably have to offer, is already here.

Not being nasty, just sayin' "not picking up what you putting down"

Have an awesome weekend

Kath
I am a coder ,not a trader

My nnfx system used 4 entry indicators and 2 filters
...which they conflict themselves .
And Taking blind trades without a stategy.

I would like a 66% winrate with 180% return a year would be reasonable...but still a 55%win rate (As a famous person said in the documentary "Money Robots") is pretty good if you want to make money

The indicis I offer are pretty good ...I wont let you down...come back 16 of december

I am not in a club :exclaim:
A famous quote in documentary "Money Robots":55% winrate is enough to make money

Re: TILSON T3 INDICATOR FOR MT4 BY YISRAEL

8
yisrael wrote: Thu Dec 09, 2021 10:59 pm I wont let you down...come back 16 of december
come back for what man............. ??? u selling stuff or something??? :roll: :roll: :roll:

just be straight up here or else report u for commercial spamming mr greek guy
These users thanked the author moey_dw for the post:
Kathy McGarry
Official Forex-station GIF animator at your service 👨‍⚖️
See a GIF with Forex-station.com on it? I probably made it
The best divergence indicator in the world.
Real news exists: Infowars.com 👈

Re: TILSON T3 INDICATOR FOR MT4 BY YISRAEL

9
moey_dw wrote: Thu Dec 09, 2021 11:12 pm come back for what man............. ??? u selling stuff or something??? :roll: :roll: :roll:

just be straight up here or else report u for commercial spamming mr greek guy
I am not selling anything...I will post the "monster breakout indicator " at 16 of december
Posting all the indicators at one's would be stup"i"d a acting...just saying
A famous quote in documentary "Money Robots":55% winrate is enough to make money

Re: TILSON T3 INDICATOR FOR MT4 BY YISRAEL

10
yisrael wrote: Thu Dec 09, 2021 10:59 pm I am a coder ,not a trader

My nnfx system used 4 entry indicators and 2 filters
...which they conflict themselves .
And Taking blind trades without a stategy.

I would like a 66% winrate with 180% return a year would be reasonable...but still a 55%win rate (As a famous person said in the documentary "Money Robots") is pretty good if you want to make money

The indicis I offer are pretty good ...I wont let you down...come back 16 of december
Can you believe this bollix....... you are still trying to sell shite.

Stop embarrassing yourself, egg
These users thanked the author Kathy McGarry for the post:
moey_dw


Who is online

Users browsing this forum: akeo, Amazon [Bot], Yandex [Bot], Yesfx and 85 guests