super signals for FT

Indicators coded by community members
Message
Author
flymetothemoon735
Posts: 2
Joined: Fri Jul 24, 2009 8:59 am

super signals for FT

#1 Postby flymetothemoon735 » Fri Jul 24, 2009 9:34 am

Hi, I am new to FT and have searched Super Signals indicator but no luck. I just started using this indicator on MT4 and need more tests. Anybody has this indicator for FT???

User avatar
Tantalus
Posts: 302
Joined: Fri Mar 23, 2007 3:51 pm
Contact:

#2 Postby Tantalus » Fri Jul 24, 2009 11:09 am

I've not heard of this one, but I specialize in creating indicators for FT. If you have more info or an mq4 file for SuperSignals I'd be happy to take a look at creating an FT version.

Brian-
Tantalus Research - Developing 21st Century Trading Systems.

flymetothemoon735
Posts: 2
Joined: Fri Jul 24, 2009 8:59 am

super signals for FT

#3 Postby flymetothemoon735 » Fri Jul 24, 2009 2:45 pm

Thank you.
Here is the one .mq4.

//+------------------------------------------------------------------+
//| super-signals_v2.mq4 |
//| Copyright ゥ 2006, Nick Bilak, beluck[AT]gmail.com |
//+------------------------------------------------------------------+
#property copyright "Copyright ゥ 2006, Nick Bilak"
#property copyright "alterations by Mark Tomlinson"
#property link "http://www.forex-tsd.com/"

#property indicator_chart_window
#property indicator_buffers 4
#property indicator_color1 Yellow
#property indicator_color2 Lime
#property indicator_color3 Red
#property indicator_color4 Aqua
//input properties

extern int dist2=21;
extern int dist1=14;
double b1[];
double b2[];
double b3[];
double b4[];


int init() {
SetIndexStyle(0,DRAW_ARROW,STYLE_SOLID,2);
SetIndexStyle(1,DRAW_ARROW,STYLE_SOLID,2);
SetIndexStyle(2,DRAW_ARROW,STYLE_SOLID,2);
SetIndexStyle(3,DRAW_ARROW,STYLE_SOLID,2);
SetIndexArrow(1,333);
SetIndexArrow(0,334);
SetIndexArrow(1,233);
SetIndexArrow(0,234);
SetIndexBuffer(0,b1);
SetIndexBuffer(1,b2);
SetIndexBuffer(2,b3);
SetIndexBuffer(3,b4);
return(0);
}
int start() {
int counted_bars=IndicatorCounted();
int k,i,j,limit,hhb,llb,hhb1,llb1;

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

for (i=limit;i>=0;i--) {
hhb1 = Highest(NULL,0,MODE_HIGH,dist1,i-dist1/2);
llb1 = Lowest(NULL,0,MODE_LOW,dist1,i-dist1/2);
hhb= Highest(NULL,0,MODE_HIGH,dist2,i-dist2/2);
llb= Lowest(NULL,0,MODE_LOW,dist2,i-dist2/2);

if (i==hhb)
b1[i]=High[hhb]+10*Point;
if (i==llb)
b2[i]=Low[llb]-10*Point;
if (i==hhb1)
b3[i]=High[hhb1]+4*Point;
if (i==llb1)
b4[i]=Low[llb1]-4*Point;
}
return(0);
}


Return to “Indicators”

Who is online

Users browsing this forum: No registered users and 27 guests