| Coding Forum Collaborate, receive help, or discuss coding related issues. |
![]() | | Tweet | |
| | #1 | ||
![]() | Convert Indicator to Buy Sell Strat? 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 ; | ||
| |
|
| | #2 | ||
![]() | Re: Convert Indicator to Buy Sell Strat? Quote:
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 | ||
| |
|
| | #3 | ||
![]() | Re: Convert Indicator to Buy Sell Strat? 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"); | ||
| |
|
| | #4 | ||
![]() | Re: Convert Indicator to Buy Sell Strat? Quote:
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 | ||
| |
|
| | #5 | ||
![]() | Re: Convert Indicator to Buy Sell Strat? | ||
| |
|
| | #6 | ||
![]() | 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 ; [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] | ||
| |
|
![]() |
| Tags |
| parabolic indicator, stop stratgey |
| Thread Tools | |
| Display Modes | 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 |