TSM5 Regression with bands code conversion request.
Forums › ProRealTime English forum › ProBuilder support › TSM5 Regression with bands code conversion request.
- This topic has 6 replies, 3 voices, and was last updated 4 years ago by Nicolas.
-
-
04/17/2020 at 1:29 PM #126538123456789101112131415161718192021222324252627{ TSM5 Regression with bandsCopyright 2011, P.J.Kaufman. All rights reserved. }inputs: period(20), bandwidth(2.0);vars: slope(0), lrvalue(0), resid(0), sdresid(0), angle(0),intercept(0), upperband(0), lowerband(0), size(0), investment(25000);Value1 = LinearReg( close, period, currentbar, slope, angle, intercept,lrvalue ) ;{ slope = LinearRegSlope(close,period);lrvalue = linearRegValue(close,period,currentbar);}resid = Close - lrvalue;If Currentbar > period then begin{ position size }size = investment / (avgtruerange(30)*bigpointvalue);size = maxlist(size,1);sdresid = stddev(close,period);Upperband = lrvalue + slope + bandwidth*sdresid;Lowerband = lrvalue + slope - bandwidth*sdresid;{ plot1(upperband,"UB");Plot2(lowerband,"LB");} plot3(lrvalue,"LR");{ If Close > upperband[1] then buy size contracts this bar on closeElse if Close < lowerband[1] then sell short size contracts this bar on close; }end;
Hello
04/17/2020 at 2:23 PM #126554There are some simple rules that everyone using the forums is expected to follow. Your post has broken one or more of these rules.
The forum rules are as follows. I have highlighted in bold the rule/rules that you have not followed:
Post your topic in the correct forum.
ProRealTime Platform Support only platform related issues.
ProOrder only strategy topics.
ProBuilder only indicator topics.
ProScreener only screener topics
General Discussion any other topics.
Welcome New Members for new forum members to introduce themselves.Only post in the language of the forum that you are posting in. For example English only in the English speaking forums and French only in the French speaking forums.
Always use the ‘Insert PRT Code’ button when putting code in your posts to make it easier for others to read.
Do not double post. Ask your question only once and only in one forum. All double posts will be deleted anyway so posting the same question multiple times will just be wasting your own time and will not get you an answer any quicker. Double posting just creates confusion in the forums.
Be careful when quoting others in your posts. Only use the quote option when you need to highlight a particular bit of text that you are referring to or to highlight that you are replying to a particular member if there are several involved in a conversation. Do not include large amounts of code in your quotes. Just highlight the text you want to quote and then click on ‘Quote’.
Give your topic a meaningful title. Describe your question or your subject in your title. Do not use meaningless titles such as ‘Coding Help Needed’.
Do not include personal information such as email addresses or telephone numbers in your posts. If you would like to contact another forum member directly outside of the forums then contact the forums administrator via ‘Contact Us’ and they will pass your details on to the member that you wish to contact.
Always be polite and courteous to others.
Have fun.I have edited your post where required. Please ensure that your future posts meet these few simple forum rules. 🙂
04/17/2020 at 2:26 PM #126556Roberto already told you in your first ever topic how to request a free code conversion from here:
Ask for a Free Code Conversion
Why did you completely ignore him?
Please add the missing information to this topic.
04/17/2020 at 3:41 PM #12657704/20/2020 at 10:56 AM #127026Hello! I am having trouble converting various metastock indicators into PRT. If possible, I would love some help with the following code, to use as a guideline for future conversions 🙂
TSM5 Regression with bands123456789101112131415161718192021222324252627{ TSM5 Regression with bandsCopyright 2011, P.J.Kaufman. All rights reserved. }inputs: period(20), bandwidth(2.0);vars: slope(0), lrvalue(0), resid(0), sdresid(0), angle(0),intercept(0), upperband(0), lowerband(0), size(0), investment(25000);Value1 = LinearReg( close, period, currentbar, slope, angle, intercept,lrvalue ) ;{ slope = LinearRegSlope(close,period);lrvalue = linearRegValue(close,period,currentbar);}resid = Close - lrvalue;If Currentbar > period then begin{ position size }size = investment / (avgtruerange(30)*bigpointvalue);size = maxlist(size,1);sdresid = stddev(close,period);Upperband = lrvalue + slope + bandwidth*sdresid;Lowerband = lrvalue + slope - bandwidth*sdresid;{ plot1(upperband,"UB");Plot2(lowerband,"LB");} plot3(lrvalue,"LR");{ If Close > upperband[1] then buy size contracts this bar on closeElse if Close < lowerband[1] then sell short size contracts this bar on close; }end;Also, I would like to apologise to Nicolas aswell as Vonasi for being a nuisance last week – I theorize I pressed “submit” just before clocking out, without checking the posted content. Sorry about that mishap.
04/20/2020 at 12:00 PM #127047tapetkabinett – You seem to be having some issues with reading the rules and sticking to them.
Do not double post! I will merge this topic with your last one on exactly the same subject!
04/20/2020 at 1:24 PM #127077Please find below the code conversion from Metastock to ProRealTime about your strategy. It also plots on the chart the TSM regression bands.
123456789101112131415161718192021222324period=20bandwidth=2.0investment=10slope = LinearRegressionSlope[period](close)lrvalue = linearRegression[period](close)resid = Close - lrvalueIf barindex > period thensize = investment / (averagetruerange[30]*pointvalue)size = max(size,1)sdresid = std[period](close)Upperband = lrvalue + slope + bandwidth*sdresidLowerband = lrvalue + slope - bandwidth*sdresidgraphonprice upperbandgraphonprice lowerbandgraphonprice lrvalueIf Close > upperband[1] thenbuy size contracts at marketElsif Close < lowerband[1] thensellshort size contracts at marketendifendif -
AuthorPosts
Find exclusive trading pro-tools on