⭐ Meow Posted July 17, 2013 Report Posted July 17, 2013 Hey guys, anyone know where I can find NetLines indicator as stand alone or maybe some part of other educated package? "The indicator draws the net line after three consecutive up bars or three consecutive down bars . The line is drawn at the low/high of the first bar in the three bar series and times out after the designated number of bars, five being the default. A penetration of the net line is a buy/sell signal. http://evilspeculator.com/wp-content/uploads/2011/06/2011-06-15_NLS_EURO.png
omaron Posted July 17, 2013 Report Posted July 17, 2013 Hmmm... apparently some1 made it already, since that image is a capture of a NT7 chart...
thedriver Posted July 17, 2013 Report Posted July 17, 2013 below the thinkorSwim Net-Lines script, can someone kindly convert it for ninja?? regars #DEF VCLOSE = (((HIGH + LOW) + (CLOSE * 2)) / 4) ; DEF VCLOSE = (((HIGH + LOW) / 2)) ; #DEF VCLOSE = CLOSE - (((HIGH + LOW) + (CLOSE * 2)) / 4) ; #DEF VCLOSE = CLOSE; def VBI = (((VCLOSE[1] < VCLOSE[2]) * (VCLOSE[2] < VCLOSE[3])) * (VCLOSE[3] < VCLOSE[4])); DEF VSS = (((VCLOSE[1] > VCLOSE[2]) * (VCLOSE[2] > VCLOSE[3])) * (VCLOSE[3] < VCLOSE[4])); def vmovebi = (sum(vbi, 5) / 5) == vbi; def vmovess = (sum(vss, 5) / 5) == vss; declare upper; rec top; rec bot; top = if VBI then High[3] else top[1]; bot = if VSS then Low[3] else bot[1]; plot BUYline = if vmovebi then Double.NaN else TOP; BUYline.SetLineWeight(1); BUYline.SetDefaultColor(color.BLUE); BUYline.SetPaintingStrategy(PaintingStrategy.dashe s); plot SHORTline = if vmovess then Double.NaN else BOT; SHORTline.SetLineWeight(1); SHORTline.SetDefaultColor(color.MAGENTA); SHORTline.SetPaintingStrategy(PaintingStrategy.poi nts);
⭐ Meow Posted July 17, 2013 Author Report Posted July 17, 2013 Hmmm... apparently some1 made it already, since that image is a capture of a NT7 chart... I was looking everywhere and could not find that indicator.
⭐ Meow Posted July 17, 2013 Author Report Posted July 17, 2013 I just been told by the person that uses this indicator, that he coded it himself.
omaron Posted July 17, 2013 Report Posted July 17, 2013 well.. unfortunately i am not a coder... so maybe ask if he is willing to share it too ? if he is a good pal and not a sneaky vendor he can do it :) otherwise, will need to see if one of the guys here who can code will do it..
⭐ Meow Posted July 17, 2013 Author Report Posted July 17, 2013 well.. unfortunately i am not a coder... so maybe ask if he is willing to share it too ? if he is a good pal and not a sneaky vendor he can do it :) otherwise, will need to see if one of the guys here who can code will do it.. He said he could not share and its fair enough...
omaron Posted July 17, 2013 Report Posted July 17, 2013 then we need to see if some1 here is willing to code it...
tryitagainmf Posted July 17, 2013 Report Posted July 17, 2013 then we need to see if some1 here is willing to code it... Without "hijacking" the thread, I've got another ThinkScript indicator ("Dr Brett's Levels") that would be outstanding in NinjaTrader! I can either post it here or send it directly to any benevolent NinjaScript coder. Hopefully! Mick
omaron Posted July 17, 2013 Report Posted July 17, 2013 Without "hijacking" the thread, I've got another ThinkScript indicator ("Dr Brett's Levels") that would be outstanding in NinjaTrader! I can either post it here or send it directly to any benevolent NinjaScript coder. Hopefully! Mick better make a new thread and request some1 to code that, post whatever you have so it makes things easier for anyone interested.
JDubbs Posted July 17, 2013 Report Posted July 17, 2013 Without "hijacking" the thread, I've got another ThinkScript indicator ("Dr Brett's Levels") that would be outstanding in NinjaTrader! I can either post it here or send it directly to any benevolent NinjaScript coder. Hopefully! Mick Send me a PM with the logic behind the levels tryitagainmf 1
tryitagainmf Posted July 17, 2013 Report Posted July 17, 2013 better make a new thread and request some1 to code that, post whatever you have so it makes things easier for anyone interested. omaron...as always, I agree with you, mate. Just taking the opportunity to tag-along with a built-in, rare request in this thread for something in ThinkScript to be converted to NinjaScript. Cheers! Mick
omaron Posted July 17, 2013 Report Posted July 17, 2013 omaron...as always, I agree with you, mate. Just taking the opportunity to tag-along with a built-in, rare request in this thread for something in ThinkScript to be converted to NinjaScript. Cheers! Mick No worry. If you find the indi useful, just share it with the guys :)
JDubbs Posted July 17, 2013 Report Posted July 17, 2013 Sorry for flooding your thread....but I am almost to the point of being able to respond to PM's--I received your PM and looks straight forward.
tarar1818 Posted July 18, 2013 Report Posted July 18, 2013 (edited) ........... Edited March 13, 2014 by tarar1818 tryitagainmf 1
tarar1818 Posted July 18, 2013 Report Posted July 18, 2013 (edited) ........... Edited March 13, 2014 by tarar1818 futuretrader 1
futuretrader Posted July 18, 2013 Report Posted July 18, 2013 (edited) I can Convert any thinkorswim study to Ninjatrader, or from ninjatrader to thinkorswim , Send me Files,I will do for you. could you convert this indicator into ninja? thanks in advance! https://sites.google.com/site/trendxplorer/download/Hurst_ChannelsSTUDY.ts?attredirects=0&d=1 Edited July 18, 2013 by futuretrader
⭐ Meow Posted July 18, 2013 Author Report Posted July 18, 2013 better make a new thread and request some1 to code that, post whatever you have so it makes things easier for anyone interested. I agree with omaron, you hijacked the thread already, with all the replies etc...:(
omaron Posted July 18, 2013 Report Posted July 18, 2013 could you convert this indicator into ninja? thanks in advance! https://sites.google.com/site/trendxplorer/download/Hurst_ChannelsSTUDY.ts?attredirects=0&d=1 Guys... Why don't you make your own threads? Is not only unfair to original poster (Meow in this case) but is also confusing for other members, who expect something else when read this thread.
thedriver Posted July 18, 2013 Report Posted July 18, 2013 I can Convert any thinkorswim study to Ninjatrader, Please send me thinkorswim study codes, I will do for you. Hi Tarar1818 , can you try to convert my thinkorswim study codes at post #3?? Thanks you so much
tarar1818 Posted July 18, 2013 Report Posted July 18, 2013 (edited) ........... Edited March 13, 2014 by tarar1818 thedriver and newbie0101 2
tarar1818 Posted July 18, 2013 Report Posted July 18, 2013 (edited) ........... Edited March 13, 2014 by tarar1818 tryitagainmf, newbie0101 and ⭐ Meow 3
⭐ flipper26 Posted July 31, 2013 Report Posted July 31, 2013 bumping these requests for ninja programming
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now