Welcome to the Traders Laboratory Forums.
Coding Forum Collaborate, receive help, or discuss coding related issues.

Reply
Old 09-30-2011, 05:38 PM   #1

Join Date: Jan 2008
Location: Amarillo
Posts: 24
Ignore this user

Thanks: 0
Thanked 0 Times in 0 Posts

Convert Indicator to Buy Sell Strat?

Can someone convert this indicator to a buy/sell strategy (buy lostop sell short stop) always in the market.

inputs: Sensitivity(2), ShowDots(true), ShowLines(false), Displace(0);

vars: var1(0), var2(0), var3(0), var4(0);

if Raz_rangevector_os = 1 then
Begin
;
var4 = Sensitivity*10 ;
var2 = RAZWEMA_os (HIGH, var4) ;
var3 = RAZWEMA_os (LOW, var4) ;
if Displace >= 0 OR CurrentBar > AbsValue (Displace) then PLOT1[Displace] (var2, "BuyStop") ;
if HIGH < var2 And var2[1] >= var2[2] And var2 < var2[1] then
Begin
ALERT ("Confirm down") ;
End ELSE
Begin
if Displace >= 0 OR CurrentBar > AbsValue (Displace) then
Begin
PLOT2[Displace] (var3, "SellStop") ;
if var3[1] <= var3[2] And LOW > var3 And var3 > var3[1] then ALERT ("Confirm Up") ;
End ;
End ;
if (var3 < var3[1]) then SETPLOTCOLOR (2, GetBackGroundColor) ;
if (var2 > var2[1]) then SETPLOTCOLOR (1, GetBackGroundColor) ;
if ShowDots = TRUE then
Begin
if HIGH < var2 And var2[1] >= var2[2] And var2 < var2[1] then PLOT3[1] (var2, "Confirm_Dn") ELSE NOPLOT (3) ;
if LOW > var3 And var3[1] <= var3[2] And var3 > var3[1] then PLOT4[1] (var3, "Confirm_Up") ELSE NOPLOT (4) ;
End ;
if ShowLines then
Begin
if Displace >= 0 OR CurrentBar > AbsValue (Displace) then PLOT5[Displace] (var2, "BuyLine") ;
if (var2 > var2[1]) then SETPLOTCOLOR (5, GetBackGroundColor) ;
if Displace >= 0 OR CurrentBar > AbsValue (Displace) then PLOT6[Displace] (var3, "SellLine") ;
if (var3 < var3[1]) then SETPLOTCOLOR (6, GetBackGroundColor) ;
End ;
End ;
9146894me is offline  
Reply With Quote
Old 09-30-2011, 05:43 PM   #2

Tams's Avatar

Join Date: Sep 2008
Location: Geelong
Posts: 3,779
Ignore this user

Thanks: 2,084
Thanked 1,474 Times in 912 Posts

Re: Convert Indicator to Buy Sell Strat?

Quote:
Originally Posted by 9146894me »
Can someone convert this indicator to a buy/sell strategy (buy lostop sell short stop) always in the market.

inputs: Sensitivity(2), ShowDots(true), ShowLines(false), Displace(0);

vars: var1(0), var2(0), var3(0), var4(0);

if Raz_rangevector_os = 1 then
Begin
;
var4 = Sensitivity*10 ;
var2 = RAZWEMA_os (HIGH, var4) ;
var3 = RAZWEMA_os (LOW, var4) ;
if Displace >= 0 OR CurrentBar > AbsValue (Displace) then PLOT1[Displace] (var2, "BuyStop") ;
if HIGH < var2 And var2[1] >= var2[2] And var2 < var2[1] then
Begin
ALERT ("Confirm down") ;
End ELSE
Begin
if Displace >= 0 OR CurrentBar > AbsValue (Displace) then
Begin
PLOT2[Displace] (var3, "SellStop") ;
if var3[1] <= var3[2] And LOW > var3 And var3 > var3[1] then ALERT ("Confirm Up") ;
End ;
End ;
if (var3 < var3[1]) then SETPLOTCOLOR (2, GetBackGroundColor) ;
if (var2 > var2[1]) then SETPLOTCOLOR (1, GetBackGroundColor) ;
if ShowDots = TRUE then
Begin
if HIGH < var2 And var2[1] >= var2[2] And var2 < var2[1] then PLOT3[1] (var2, "Confirm_Dn") ELSE NOPLOT (3) ;
if LOW > var3 And var3[1] <= var3[2] And var3 > var3[1] then PLOT4[1] (var3, "Confirm_Up") ELSE NOPLOT (4) ;
End ;
if ShowLines then
Begin
if Displace >= 0 OR CurrentBar > AbsValue (Displace) then PLOT5[Displace] (var2, "BuyLine") ;
if (var2 > var2[1]) then SETPLOTCOLOR (5, GetBackGroundColor) ;
if Displace >= 0 OR CurrentBar > AbsValue (Displace) then PLOT6[Displace] (var3, "SellLine") ;
if (var3 < var3[1]) then SETPLOTCOLOR (6, GetBackGroundColor) ;
End ;
End ;
what would you like to do?

when to buy?
when to sell?

do you have a sample chart?



ps. please use code tag when posting codes. It is the # key at the top of the message window frame.
__________________



Only an idiot would reply to a stupid post
Tams is offline  
Reply With Quote
Old 09-30-2011, 06:05 PM   #3

Join Date: Jan 2008
Location: Amarillo
Posts: 24
Ignore this user

Thanks: 0
Thanked 0 Times in 0 Posts

Re: Convert Indicator to Buy Sell Strat?

I guess it just no as simple as I think. I have a EMA fast and slow SMA and LMA. When the SMA is below the LMA i want to sell the plot of the Short Parabolic stop and continue to do so (ignoring the buys of the stop until the SMA, LMA changes)

Going the other way if the SMA is above the LMA i want to buy the long stops and out at the stop plotting the other way... but continuing to buy and sell the direction until the SMA and LMA change and crossover.

_________________________ ____________

{RAZ EMA}

[LegacyColorValue = true];



Inputs: SEMA(23), LEMA(50);

Vars: SMA(0), LMA(0);

{Moving Averages}
SMA=RAZEMA(C,SEMA);
LMA=RAZEMA(C,LEMA);


{Plots}
Plot1(SMA,"SMA");
Plot2(LMA,"LMA");
Attached Thumbnails
Convert Indicator to Buy Sell Strat?-sma-ema-stops.jpg  
9146894me is offline  
Reply With Quote
Old 09-30-2011, 06:09 PM   #4

Tams's Avatar

Join Date: Sep 2008
Location: Geelong
Posts: 3,779
Ignore this user

Thanks: 2,084
Thanked 1,474 Times in 912 Posts

Re: Convert Indicator to Buy Sell Strat?

Quote:
Originally Posted by 9146894me »

I guess it just no as simple as I think. I have a EMA fast and slow SMA and LMA. When the SMA is below the LMA i want to sell the plot of the Short Parabolic stop and continue to do so (ignoring the buys of the stop until the SMA, LMA changes)

Going the other way if the SMA is above the LMA i want to buy the long stops and out at the stop plotting the other way... but continuing to buy and sell the direction until the SMA and LMA change and crossover.

_________________________ ____________

{RAZ EMA}

[LegacyColorValue = true];



Inputs: SEMA(23), LEMA(50);

Vars: SMA(0), LMA(0);

{Moving Averages}
SMA=RAZEMA(C,SEMA);
LMA=RAZEMA(C,LEMA);


{Plots}
Plot1(SMA,"SMA");
Plot2(LMA,"LMA");
how much would you like to pay for this Buy Sell Strat??




ps. please use code tag when posting codes. It is the # key at the top of the message window frame.
__________________



Only an idiot would reply to a stupid post
Tams is offline  
Reply With Quote
Old 09-30-2011, 06:18 PM   #5

Join Date: Jan 2008
Location: Amarillo
Posts: 24
Ignore this user

Thanks: 0
Thanked 0 Times in 0 Posts

Re: Convert Indicator to Buy Sell Strat?

Contact me in messages
9146894me is offline  
Reply With Quote
Old 09-30-2011, 06:21 PM   #6

Join Date: Jan 2008
Location: Amarillo
Posts: 24
Ignore this user

Thanks: 0
Thanked 0 Times in 0 Posts

Re: Convert Indicator to Buy Sell Strat?

Code:
inputs: Sensitivity(2), ShowDots(true), ShowLines(false), Displace(0);

vars: var1(0), var2(0), var3(0), var4(0);

if Raz_rangevector_os = 1 then 
Begin 
;
var4 = Sensitivity*10 ;
var2 = RAZWEMA_os (HIGH, var4) ;
var3 = RAZWEMA_os (LOW, var4) ;
if Displace >= 0 OR CurrentBar > AbsValue (Displace) then PLOT1[Displace] (var2, "BuyStop") ;
if HIGH < var2 And var2[1] >= var2[2] And var2 < var2[1] then 
Begin 
ALERT ("Confirm down") ;
End ELSE 
Begin 
if Displace >= 0 OR CurrentBar > AbsValue (Displace) then 
Begin 
PLOT2[Displace] (var3, "SellStop") ;
if var3[1] <= var3[2] And LOW > var3 And var3 > var3[1] then ALERT ("Confirm Up") ;
End ;
End ;
if (var3 < var3[1]) then SETPLOTCOLOR (2, GetBackGroundColor) ;
if (var2 > var2[1]) then SETPLOTCOLOR (1, GetBackGroundColor) ;
if ShowDots = TRUE then 
Begin 
if HIGH < var2 And var2[1] >= var2[2] And var2 < var2[1] then PLOT3[1] (var2, "Confirm_Dn") ELSE NOPLOT (3) ;
if LOW > var3 And var3[1] <= var3[2] And var3 > var3[1] then PLOT4[1] (var3, "Confirm_Up") ELSE NOPLOT (4) ;
End ;
if ShowLines then 
Begin 
if Displace >= 0 OR CurrentBar > AbsValue (Displace) then PLOT5[Displace] (var2, "BuyLine") ;
if (var2 > var2[1]) then SETPLOTCOLOR (5, GetBackGroundColor) ;
if Displace >= 0 OR CurrentBar > AbsValue (Displace) then PLOT6[Displace] (var3, "SellLine") ;
if (var3 < var3[1]) then SETPLOTCOLOR (6, GetBackGroundColor) ;
End ;
End ;
[CODE
[LegacyColorValue = true];



Inputs: SEMA(23), LEMA(50);

Vars: SMA(0), LMA(0);

{Moving Averages}
SMA=RAZEMA(C,SEMA);
LMA=RAZEMA(C,LEMA);


{Plots}
Plot1(SMA,"SMA");
Plot2(LMA,"LMA");
][/CODE]
9146894me is offline  
Reply With Quote

Reply

Tags
parabolic indicator, stop stratgey

Thread Tools
Display Modes Help Others By Rating This Thread
Help Others By Rating This Thread:


Similar Threads
Thread Thread Starter Forum Replies Last Post
Convert MT4 Indicator into Tradestation Eld? goody01 Coding Forum 26 10-14-2011 12:04 PM
Sell in May, Go Away... Tams Market Analysis 28 11-24-2010 12:05 AM
Cumulative Volume(Delta Buy/Sell) Indicator mdtmn Market Profile 5 07-27-2010 05:32 AM
Convert ELD to MT4 (.mql) dre Coding Forum 4 07-17-2010 09:24 AM
Help Convert from TS --> MT --> TS metotron Trading Indicators 0 11-02-2008 07:33 AM

All times are GMT -4. The time now is 11:02 AM.
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
CS to VB integration by DeskLancer
©2006-2011 Traders Laboratory, All Rights Reserved.