TS strategies I found on the net/magazines/etc
Moderator: moderators
- michal.kreslik
- rank: 1000+ posts
- Posts: 1046
- Joined: Sat May 13, 2006 2:40 am
- Reputation: 34
- Location: Monte Carlo, Monaco
- Real name: Michal Kreslik
- Gender:
- Contact:
Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.
Thank you for your support.
- heyen
- rank: <50 posts
- Posts: 20
- Joined: Fri May 19, 2006 10:41 am
- Reputation: 0
- Location: Germany
- Gender:
Neoticker trading systems that work
NeoTicker System that work
For NeoTcker, but still intresting.
Includes performance analysis, but only with commission, not slippage.
For NeoTcker, but still intresting.
Includes performance analysis, but only with commission, not slippage.
- TomKeough
- rank: <50 posts
- Posts: 29
- Joined: Sat Jun 17, 2006 1:13 am
- Reputation: 0
- Location: Jacksonville, Florida
- Real name: Tom Keough
- Gender:
- Contact:
Very thoughtful for those with no access to TS
blr121970 wrote:Posting the code for people who do not have access to the TS forums
Thanks!
Tom
"We either make ourselves miserable,
or we make ourselves strong.
The amount of work is the same."
- Carlos Castaneda
or we make ourselves strong.
The amount of work is the same."
- Carlos Castaneda
I found the follwing code in the net and tried to test but failed as there are so many error as reported during verification.
Would any one kindly try the following code and do the necessary rectification for me ?
Regards
Ferdous
Inputs: Echannel(20),XChannel(10),ATRBars(15),AcctSize (10000000),Edate(861231);
Vars:UP(false),H20(0),H10(0),L20(0),L10(0),LastB(0 ),LastS(99999),GO(false),First(true),LX2N(0),SX2N( 0),ATR(0),CON(0),H50(0),L50(0);
IncludeSystem: "Edate",Edate;
ATR=Average(TrueRange,ATRBars);
CON = Round((0.01*AcctSize)/(ATR*BigPointValue),0);
H20=Highest(High,EChannel);
L20=Lowest(Low,EChannel);
H10=Highest(High,XChannel);
L10=Lowest(Low,XChannel);
If Marketposition >-1 Then SX2N = Minlist(L20,Tomorrow)+ (2*ATR);
If Marketposition < 1 Then LX2N = Maxlist(H20,Tomorrow) - (2*ATR);
ExitLong ("2N Stop LX") LX2N Stop;
ExitShort ("2N Stop SX") SX2N Stop;
ExitLong("C-10 LX") L10 -1 Point Stop;
ExitShort("C-10 SX")H10 +1 Point Stop;
If UP[1]=False or First then begin
If High > H20[1] then begin
LastB = H20[1];
If Open > LastB then LastB = Open;
UP = True;
First = False;
End;
If UP[1] or First then begin
If Low < L20 then begin
LastS = L20[1];
If Open < LastS then LastS = Open;
UP = False;
First = False;
End;
End;
If GO then Begin
If Maxlist(H20, 0 Tomorrow) > LastS and UP[1] = False then
Buy ("C-20 Buy #1") CON Contracts H20 +1 Point Stop;
If Minlist(L20, 0 Tomorrow) < LastB and UP[1] then
Sell("C-20 Sell #1") CON Contracts L20 -1 Point Stop;
If H20 > LastS and UP and LastS < LastB then
Buy("C-20 Buy #2") CON Contracts H20 +1 Point Stop;
If L20 < LastB and UP = False and LastS < LastB then
Sell ("C-20 Sell #2") CON Contracts L20 -1 Point Stop;
End;
If LastB > 0 and LastS < 99999 Then GO = True;
If Marketposition = 0 then begin
H50 = Highest(High,50);
L50 = Lowest (Low,50);
Buy("10 Week Buy") CON Contracts H50 Stop;
Sell("10 Week Sell") CON Contracts L50 Stop;
End;
Would any one kindly try the following code and do the necessary rectification for me ?
Regards
Ferdous
Inputs: Echannel(20),XChannel(10),ATRBars(15),AcctSize (10000000),Edate(861231);
Vars:UP(false),H20(0),H10(0),L20(0),L10(0),LastB(0 ),LastS(99999),GO(false),First(true),LX2N(0),SX2N( 0),ATR(0),CON(0),H50(0),L50(0);
IncludeSystem: "Edate",Edate;
ATR=Average(TrueRange,ATRBars);
CON = Round((0.01*AcctSize)/(ATR*BigPointValue),0);
H20=Highest(High,EChannel);
L20=Lowest(Low,EChannel);
H10=Highest(High,XChannel);
L10=Lowest(Low,XChannel);
If Marketposition >-1 Then SX2N = Minlist(L20,Tomorrow)+ (2*ATR);
If Marketposition < 1 Then LX2N = Maxlist(H20,Tomorrow) - (2*ATR);
ExitLong ("2N Stop LX") LX2N Stop;
ExitShort ("2N Stop SX") SX2N Stop;
ExitLong("C-10 LX") L10 -1 Point Stop;
ExitShort("C-10 SX")H10 +1 Point Stop;
If UP[1]=False or First then begin
If High > H20[1] then begin
LastB = H20[1];
If Open > LastB then LastB = Open;
UP = True;
First = False;
End;
If UP[1] or First then begin
If Low < L20 then begin
LastS = L20[1];
If Open < LastS then LastS = Open;
UP = False;
First = False;
End;
End;
If GO then Begin
If Maxlist(H20, 0 Tomorrow) > LastS and UP[1] = False then
Buy ("C-20 Buy #1") CON Contracts H20 +1 Point Stop;
If Minlist(L20, 0 Tomorrow) < LastB and UP[1] then
Sell("C-20 Sell #1") CON Contracts L20 -1 Point Stop;
If H20 > LastS and UP and LastS < LastB then
Buy("C-20 Buy #2") CON Contracts H20 +1 Point Stop;
If L20 < LastB and UP = False and LastS < LastB then
Sell ("C-20 Sell #2") CON Contracts L20 -1 Point Stop;
End;
If LastB > 0 and LastS < 99999 Then GO = True;
If Marketposition = 0 then begin
H50 = Highest(High,50);
L50 = Lowest (Low,50);
Buy("10 Week Buy") CON Contracts H50 Stop;
Sell("10 Week Sell") CON Contracts L50 Stop;
End;
Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.
Thank you for your support.
-
- rank: <50 posts
- Posts: 12
- Joined: Thu May 17, 2007 11:58 am
- Reputation: 0
- Gender:
TTMTRENDANDSQUEEZE.ELD
Hello,
can anyone write TTMTRENDANDSQUEEZE.ELD in ?dicator in text format, I can't open it with Ts2000i.
Thanks very much.
can anyone write TTMTRENDANDSQUEEZE.ELD in ?dicator in text format, I can't open it with Ts2000i.
Thanks very much.
Re: TS strategies I found on the net/magazines/etc
In this magazine, there are several Trading Systems and Indicators (for Tradestation, eSignal, NinjaTrader, etc...):
post147544#p147544
post147544#p147544
Last edited by Zorak on Sun Sep 04, 2022 6:36 pm, edited 1 time in total.
Re: TS strategies I found on the net/magazines/etc
In this Site, if you look carefully, there are several Trading Systems in Easylanguage (some in Python):
http://georgepruitt.com/the-complete-tu ... u-can-get/
http://georgepruitt.com/category/free-easylanguage/
https://easylanguagemastery.com/free-tr ... r-tracker/
http://georgepruitt.com/category/uncate ... e-systems/
http://georgepruitt.com/the-complete-tu ... u-can-get/
http://georgepruitt.com/category/free-easylanguage/
https://easylanguagemastery.com/free-tr ... r-tracker/
http://georgepruitt.com/category/uncate ... e-systems/
Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.
Thank you for your support.