markjoy Posted September 18, 2016 Report Share Posted September 18, 2016 Keep in mind, that both of the above stuff are very easy (primary level) and don't provide comprehensive knowledge about programming in C# in NT. You should treat them as a kind of introduction... https://ufile.io/70b25 (pw: as usually used here) Thank you for the post and the reminding!! Primary level is easy but it's essential to understand how NTScript and basic stuff (Testing Strategies) works. Quote Link to comment Share on other sites More sharing options...
Tim Meister Posted September 18, 2016 Report Share Posted September 18, 2016 Here's the re-up you requested. This is an excellent book and can't be found free anywhere else. We at Indo have it because of the generosity of lululee. She is very well liked and like all of us she is also learning to be an effective trader. Lululee is very kind and often shares her material with true sincerity and unselfish goodness.Thank you lululee.:) Cashmanic has always talked very positive about you during our Skypes.This book is so rare that even Ninjatrader told their Support people to study and review it.The only book on learning Ninjascript. Study it well. http://i65.tinypic.com/2w7n5f8.jpg NinjaScript Programmer's Launch Pad.pdf https://www.sendspace.com/file/bc9bge Cheers, I seen this title around many times steve. Thank you and lululee! Will be a helpful book. :) ⭐ whinny, OsmanIM, Frank Taylor and 1 other 4 Quote Link to comment Share on other sites More sharing options...
lbf4223 Posted September 18, 2016 Report Share Posted September 18, 2016 (edited) To clear up a confusing point (that booklet above doesn't mention) about something like referencing Close[0]: If you have OnBarUpdate() setup to be called on every tick of data, then, of course, you need to put an if statement in your code when you want to have logic which only does something when the first tick of a new price bar gets printed on your chart (e.g., if (FirstTickOfBar) {...} ). Now, the code IN that "if (FirstTickOfBar) {...}" should look like this if you want to reference the most recent Open/High/Low/Close. That is, you really want to start checking what you think Close[0] is by referencing Close[1]. On the first tick of a new bar, OHLC are all the same price so that's useless information when you're interested in completed price bars inside that if statement. Example: if (FirstTickOfBar) { #region Local Variables var open0 = (decimal) Instrument.MasterInstrument.Round2TickSize(Open[1]); var open1 = (decimal) Instrument.MasterInstrument.Round2TickSize(Open[2]); var high0 = (decimal) Instrument.MasterInstrument.Round2TickSize(High[1]); var high1 = (decimal) Instrument.MasterInstrument.Round2TickSize(High[2]); var low0 = (decimal) Instrument.MasterInstrument.Round2TickSize(Low[1]); var low1 = (decimal) Instrument.MasterInstrument.Round2TickSize(Low[2]); var close0 = (decimal) Instrument.MasterInstrument.Round2TickSize(Close[1]); var close1 = (decimal) Instrument.MasterInstrument.Round2TickSize(Close[2]); #endregion // now insert your logic here where you reference Close[0] as close0, etc. You will be checking the last completed price bar but your // mind won't get messed up in your programming by being 1 off index between your code inside and outside of the "if (FirstTickOfBar) {}" statement(s) } Notice also that I convert the prices to decimal values. If makes your code easier to read, especially when you're directly comparing two floating point values. In C#, you cannot directly compare 2 "float" or "double" values for equality, but if they're decimal values, you can. I understand that there's an NT function call to make the comparison for you but it will make your code more tedious to read when all your mind wants to see, for example, is "if (high0 == high1) {}". I would also encourage you to put a lot of #region / #endregion sections in your code. As your code base expands for your indicator or strategy, you'll appreciate them more as you're trying to edit your code. Edited September 18, 2016 by lbf4223 profile and SINGtrader 2 Quote Link to comment Share on other sites More sharing options...
noone22 Posted November 10, 2016 Report Share Posted November 10, 2016 any chance of re-upload ? Quote Link to comment Share on other sites More sharing options...
⭐ moneyshare Posted November 10, 2016 Report Share Posted November 10, 2016 any chance of re-upload ? Link in post 102 is still working. same link as below https://www.sendspace.com/file/bc9bge Quote Link to comment Share on other sites More sharing options...
ranchito Posted February 11, 2017 Report Share Posted February 11, 2017 Hi. The tutorial serves to educate nt8? Because I have problems with an indicator. Quote Link to comment Share on other sites More sharing options...
ranchito Posted February 11, 2017 Report Share Posted February 11, 2017 I have the following error when deleting and wanting to save the .clean file. "The system can not find the specified file" The indicator is nt8 Quote Link to comment Share on other sites More sharing options...
traderCamps Posted March 2, 2017 Report Share Posted March 2, 2017 (edited) Hi, Does anyone can help decompile sym@Delta to source code? I try to do it but failed. https://www.forexupload.c0m/3ax https://www.sendspace.c0m/file/8k5rw9 0---o Many thanks, Edited March 2, 2017 by traderCamps Quote Link to comment Share on other sites More sharing options...
Mari Diluce Posted March 3, 2017 Report Share Posted March 3, 2017 CsharpNinjascript.zip (224.59MB) Sorry this has been pulled from sendspace. Please see posts #65 and #69 from Ja Ja Binks for the links. please, can anyone reupload this file CsharpNinjascript.zip ? much thanks Quote Link to comment Share on other sites More sharing options...
Mari Diluce Posted March 3, 2017 Report Share Posted March 3, 2017 Thanks Profile Alternative: Red Gate .NET Reflector 9.0.1.268 VSPro Portable | 5.6 MB http://nitroflare.cxm/view/091350A1420176C/Reflector9Portable.rar Red Gate .NET Reflector 8.5.0.179 VSPro | 9.4 MB http://nitroflare.cxm/view/56C7946A0525F5A/Reflector.8.5.0.179.rar please can anyone reupload this two files? thank you advance Quote Link to comment Share on other sites More sharing options...
⭐ ESVepara Posted March 3, 2017 Report Share Posted March 3, 2017 (edited) ================= Edited March 6, 2017 by ESVepara Quote Link to comment Share on other sites More sharing options...
rlygangesh Posted March 20, 2017 Report Share Posted March 20, 2017 hi admis sir & other experts Read all materials & some you tube videos i had tried to unlock some dll with admis sir method & also with .net refelactor but unable to open . can you please help me to open these dlls https://[email protected]/filegroup/ABWzBaSTz5q9rDCCNAOaSA Quote Link to comment Share on other sites More sharing options...
orfila Posted March 20, 2017 Report Share Posted March 20, 2017 They are not .net/c# files Quote Link to comment Share on other sites More sharing options...
mastertrader7 Posted April 6, 2017 Author Report Share Posted April 6, 2017 I am trying to get help Cracking these Thank you all https://www.forexupload.com/3c5 https://www.forexupload.com/3c6 This thread is about learning to crack and modify. Requests for cures in other places please. Thank you. Quote Link to comment Share on other sites More sharing options...
mastertrader7 Posted April 6, 2017 Author Report Share Posted April 6, 2017 This is what i have so far but still no output any help is appreciated Thank you. https://www.forexupload.com/3ca https://www.forexupload.com/3cb Moderators please kick this infant from this thread. Quote Link to comment Share on other sites More sharing options...
shickman Posted August 4, 2017 Report Share Posted August 4, 2017 Here you go. A couple of download options for the same pdf. Ninjascript Programmers Launchpad - Scott Daggett: https://www.sendspace.com/file/nref6y https://anonfiles.com/file/a974a78e6061bfd6613feada966fc73d all links are dead could someone please re-upload NinjaScript Programmer's pdf file, preferably on forexupload so it doesn't die so fast thank you Quote Link to comment Share on other sites More sharing options...
rohitsingh Posted August 4, 2017 Report Share Posted August 4, 2017 (edited) Kindly see the link below. Thanks for giving me opportunity to share https://www.sendspace.com/file/w9j37b If sharing direct link is not legal, i've seen couple of links where author change a few alphabet like (.) to dot , or o to 0 , Kindly guide me , if i've done something wrong. Edited August 4, 2017 by rohitsingh shickman, ⭐ whinny, Shenong and 1 other 4 Quote Link to comment Share on other sites More sharing options...
shickman Posted August 6, 2017 Report Share Posted August 6, 2017 Kindly see the link below. Thanks for giving me opportunity to share https://www.sendspace.com/file/w9j37b If sharing direct link is not legal, i've seen couple of links where author change a few alphabet like (.) to dot , or o to 0 , Kindly guide me , if i've done something wrong. rohitsingh thank you so so much for that, much appreciated !!! Quote Link to comment Share on other sites More sharing options...
rlygangesh Posted August 6, 2017 Report Share Posted August 6, 2017 hi all https://www.sendspace.com/file/p60puo above is very good trend trading system based upon Super trend but instead of using ATR it use Linear Regression channel can anyone please educate this indicator. only basic price action makes this a killer indicator Quote Link to comment Share on other sites More sharing options...
shickman Posted August 6, 2017 Report Share Posted August 6, 2017 hi all https://www.sendspace.com/file/p60puo above is very good trend trading system based upon Super trend but instead of using ATR it use Linear Regression channel can anyone please educate this indicator. only basic price action makes this a killer indicator there you go, just place the .dll file in custom folder and it works just fine :) https://www.forexupload.com/668 ⭐ whinny, ylidor, OsmanIM and 2 others 5 Quote Link to comment Share on other sites More sharing options...
⭐ klhk Posted August 6, 2017 Report Share Posted August 6, 2017 Kindly see the link below. Thanks for giving me opportunity to share https://www.sendspace.com/file/w9j37b If sharing direct link is not legal, i've seen couple of links where author change a few alphabet like (.) to dot , or o to 0 , Kindly guide me , if i've done something wrong. any chance to share the V8 edition? Quote Link to comment Share on other sites More sharing options...
shickman Posted August 6, 2017 Report Share Posted August 6, 2017 anyone knows how to convert dll to cs??? Quote Link to comment Share on other sites More sharing options...
rlygangesh Posted August 6, 2017 Report Share Posted August 6, 2017 (edited) there you go, just place the .dll file in custom folder and it works just fine :) https://www.forexupload.com/668 simply love you & amazed with your response thanks you very much but nothing seen on chart, please check Edited August 6, 2017 by rlygangesh Quote Link to comment Share on other sites More sharing options...
shickman Posted August 6, 2017 Report Share Posted August 6, 2017 simply love you & amazed with your response thanks you very much but nothing seen on chart, please check thanx :) though I have checked it and am seeing the indicator in action not so crazy about it but ya, it works just fine if you've installed the trial, exit ninjatrader and delete it manualy from custom folder and place the patched one overthere it should work fine on all type of bars checked it myself here primakov82 1 Quote Link to comment Share on other sites More sharing options...
mike83 Posted August 13, 2017 Report Share Posted August 13, 2017 how to edit the c# code and convert it back to exe or dll? any easy way? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.