Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.
-
Content Count
4075 -
Joined
-
Last visited
-
Days Won
1
Everything posted by Tams
-
I don't have the codes for the Jurik indicators. Various versions of clones are available here: Trading Indicators - Traders Laboratory
-
depends on what you want to compare, fixed period of MA "A" vs MA "B" ? or see how a specific MA can approximate its price movements and to see its ability to smooth out the noise and filter out the false signals? you can use a fixed period as a starting point of comparison, but it really does not lend much value to a smoothing end result, because each MA goes through different iterations in its calculations.
-
Those are not my charts. pls see link in my post for original creator. I am re-posting these charts for general interest, and as a point for discussion only.
-
MA comparisons credit: robotman at TS SUPPORT :: View topic - Jurik Tools for MC- good news and bad news
-
also long weekend next Monday... many people start winding down their trading today.
-
for the benefit of MultiCharts users: MultiCharts has more text manipulation capabilities than other EasyLanguage programs. You can get the additional keywords here: MultiCharts / Online Help & Tutorials --> download the handy standlone interactive dictionary: PowerLanguage Reference Guide (.CHM format) or check into the built-in dictionary in your PowerEditor.
-
I doubt you "forgotten" your password, because you were making new threads to ask the same questions with both handles. Since you "admit" you were the same person, I will let it go. You sound like a smart person, because you ask these questions to make all kinds of analysis. But if you want to move forward, you really need to pull up your socks and do some readings, because some of the questions you ask are too basic -- I don't repeat things that can be look up in a manual, unless it involves the application of certain keywords in a special way.
-
go to the tradestation website... http://www.tradestation.com/support/books/ download this free book EasyLanguage® Functions & Reserved Words Reference look for keywords that start with "text_set".
-
Can you give a critique on this Cumulative Delta indicator? How would you improve it? http://www.traderslaboratory.com/forums/56/volume-splitter-5824-5.html#post66247 post #180
-
How to trade on the FOMC announcement
Tams replied to nicknextmove's topic in Market News & Analysis
Wednesday Sep 2 2:00 PM ET FOMC Minutes -
[site update] New Site Design Launched!
Tams replied to Soultrader's topic in Announcements and Support
looking good... many thanks ! -
Amazing ! Problem fixed. I can now copy codes from FireFox with all the formatting intact. Thank you !
-
I apologize in advance for not knowing the authors of these 2 illustrations. Please post their credit if you know them.
-
you should wrap codes inside code tags. see the # symbol in the reply box. ... put codes here ...
-
I don't understand what you are talking about either. just use plot1 and you won't have the problem.
-
you have to EXPLAIN what "does not seem to work" mean. I will not be able to help you with autotrade questions, but if you expect people to give you responses, you should at least supply the following information: (people cannot read your mind) 1. instrument 2. resolution 3. date/ time range of the the test 4. test output 5. why do you think this output is wrong? (where is the error?) 6. are ALL the triggers wrong? did some of them works but some did not? 7. where are your expected triggers? can you post the chart to illustrate? .
-
thanks for the code. can you post a chart to illustrate the effect?
-
value3 = Average (iff (Momentum (Price, 1) > 0, momentum(price,1) * val, 0.0001), Period); because the current value of val is used for every iteration of the "average" calculation.
-
this error has nothing to do with MRO. Trying access at data to future Bars reference value : -1 this will happen if you use a negative number in bar referencing: e.g. plot1[-1] value1[-1]
-
credit goes to Jack Hershey.
-
MRO is a function. You should refer to the EasyLanguage® Functions & Reserved Words Reference .
-
it has no bearing on how you use MRO. p.s. what was the error you referred to in post #1 ?
-
try HSI in Hong Kong... exciting action guaranteed. hang seng index futures http://www.traderslaboratory.com/forums/f3/hang-seng-index-futures-1316.html Any Good Contracts to Trade After Hours? http://www.traderslaboratory.com/forums/f3/any-good-contracts-trade-after-hours-6449.html
-
here's the code to MRO: // Function: MRO inputs: Test( truefalseseries ), Len( numericsimple ), Instance( numericsimple ) ; MRO = RecentOcc( Test, Len, Instance, 1 ) ; you will also need to check this function: RecentOcc if you don't have it, you will need to add this before adding the MRO. // function: RecentOcc inputs: Test( truefalseseries ), Len( numericsimple ), Instance( numericsimple ), MLFlag( numericsimple ) ; variables: var0( 0 ), var1( 0 ) ; if MLFlag = 1 then var0 = 0 else if MLFlag = -1 then var0 = Len - 1 ; var1 = 0 ; while var0 >= 0 and var0 < Len and var1 < Instance begin if Test[var0] then var1 = var1 + 1 ; var0 = var0 + MLFlag ; end ; condition1 = var1 = Instance and Instance > 0 ; if condition1 then RecentOcc = var0 - MLFlag + ExecOffset else RecentOcc = -1 ; HTH