Hi,
is all the software also available for TS2000i ?
I´m new to this board and saw only ELD-Code for TS 8.
Regards
New Chart Indicator: _TRO_POOR_MANs_SLOT
Moderator: moderators
Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.
Thank you for your support.
TRO et al
The PM Slot flat out works! Is saved me from getting in at the wrong time, which has been my nemesis. I wait for the double Green dots when going Long for confirmation. With it I am using the "ShMe Dynamic Tide," the SHME Dynamic SR2, along with a 34 EMA and a 11 setting for the jtHMA.
I have searched this site for an explanation of how to use the Dynamic Tide, but have been unsuccessful. I use them for violations of S/R.
Thanks TRO
The PM Slot flat out works! Is saved me from getting in at the wrong time, which has been my nemesis. I wait for the double Green dots when going Long for confirmation. With it I am using the "ShMe Dynamic Tide," the SHME Dynamic SR2, along with a 34 EMA and a 11 setting for the jtHMA.
I have searched this site for an explanation of how to use the Dynamic Tide, but have been unsuccessful. I use them for violations of S/R.
Thanks TRO
Poor man's Slot machine problem
Hi,
I have tried to use the code in TS but it doesn't recognize the word (xavg) I haven't gotten past this point so I am not sure what other words it will not recognize. Does this code work in TS? And will it work for the YM and ER markets?
Thanks!
Doc
I have tried to use the code in TS but it doesn't recognize the word (xavg) I haven't gotten past this point so I am not sure what other words it will not recognize. Does this code work in TS? And will it work for the YM and ER markets?
Thanks!
Doc
- TheRumpledOne
- rank: 10000+ posts
- Posts: 15676
- Joined: Sun May 14, 2006 9:31 pm
- Reputation: 3038
- Location: Oregon
- Real name: Avery T. Horton, Jr.
- Gender:
- Contact:
Code for XAVG FUNCTION:
ELD attached.
Code: Select all
{ Exponential average }
inputs:
Price( numericseries ),
Length( numericsimple ) ; { this input assumed to be a constant >= 1 }
variables:
SmoothingFactor( 2 / ( Length + 1 ) ) ;
if CurrentBar = 1 then
XAVG = Price
else
XAVG = XAVG[1] + SmoothingFactor * ( Price - XAVG[1] ) ;
ELD attached.
- Attachments
-
- XAVG.ELD
- (2.65 KiB) Downloaded 324 times
IT'S NOT WHAT YOU TRADE, IT'S HOW YOU TRADE IT!
Please do NOT PM me with trading or coding questions, post them in a thread.
Please do NOT PM me with trading or coding questions, post them in a thread.
Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.
Thank you for your support.
- TheRumpledOne
- rank: 10000+ posts
- Posts: 15676
- Joined: Sun May 14, 2006 9:31 pm
- Reputation: 3038
- Location: Oregon
- Real name: Avery T. Horton, Jr.
- Gender:
- Contact:
Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.
Thank you for your support.