Jump to content

RajanAnand

Members
  • Posts

    64
  • Joined

  • Last visited

  • Days Won

    6

Posts posted by RajanAnand

  1.  

    thanks, i paid 149 when profitwala released this for entire pack. should have waited, are you guys planning bookmap gb as well? i have created an account on clubbingbuy few months back but so far admin has not given me permission to post. account was verified and sent multiple messages to admin. joker is my id there if you can help.

     

    Really? get a life boys, Just coming over this forum after a long gap and immediately happen to see this group buy for my item without me knowing. Good luck to all involved.

  2.  

    Sorry for insist again...

     

    A little more or help please?

     

    Thanks in advance and sorry for the inconveniences.

     

    This itself is very descriptive, i condensed my learnings in few sentences, First option is all about "Dynamic method swapping" is easiest of lot. All you need is replace the method(verifyVednorLicense or some others) when indicator dll is loading up in memory, swapped those methods to bypass license. For some indicators you will have to do something extra. Key is to replace the methods when NT starts and every time a new chart window is opened (use AddOn or a global object for that purpose).

     

    hxxps://www.codeproject.com/Articles/37549/CLR-Injection-Runtime-Method-Replacer

    hxxps://reverseengineering.stackexchange.com/questions/20997/c-changing-method-body-in-runtime

  3.  

    Could you tell us names of software?

     

    None of the existing freely/paid available tools will help with ag.net protection, you need to pick any existing compatible de-obfuscators and customize that for ag.net protection OR find someone who is willing to share their toolkit(chances you will find one is extremely low), agile protection will keep on updating & so will NT so all these will be recurring issues if one does not learn the art. There are lot of re forums which can help you set in right direction, With that said, one does need any of those if you intent is to just to educate add-ons or NT. Refer my point 1 that's all you need it's easy and can be extended for others purpose as well.

     

    One can alternately look into various freelancers sites there are lot of good NT/agile reverse engineers, you can post your needs there and someone can hopefully provide you an agile unpacker/deofuscator.

  4. You are using tools which are atleast a generation old, just throw them as they are good for nothing, does not work with new agile.net projection mechanism. Also none of the tools mentioned above will help unless you customized them for new agile protection. Here are some pointers, at first they all will sound gibberish but google/read/research first and then come back and read this post again. i have summarized my last one year of learning in this space in below points so hopefully some of you serious ones, can find sold clue in below points. Google is your best friend and exploring/reading will open up doors for you.

    • if your intent is to just bypass licensing part then read/create some samples about dynamic method swapping & you will have your own magic thingy. this is easiest way for you bypass NT & vendor license.(think of this as a in memory hook for intercepting licensing call ), basic Ninja script knowledge is needed here.
    • if your intention is to edit code in order to customize NT & vendor dlls then go read about agile.net unpackers & de-virtualization; [ At the end you will end up customizing one of de-obfuscator to match agile.net tokenization(you still wont be able to get around virtualization)].
    • Another option is to learn assembly language patching using tools like x64dbg/Ghidra . this one needs advanced skills for bytecode editing. once you get this there is no stopping.
    • For tools/add on that does complex server side validation , use network snipper tools to track packets and replicate/mimic those locally via a emulators (i.e. bookmap/mtp/acme/kwippop etc)

  5. Folks, I am quite off the grid as far as indian stock exchange is concerned but wanted to understand if there are any solutions for Ninjatrader around placing orders to leveraging Zerodha or SAMCO leveraging their API. if so please point me to those solutions if they exist, otherwise i plan to create a "Order Replicator" which will post orders to Zerodha/SAMCO directly from NinjaTrader.

     

    I plan to start working on this soon and need 2-3 volunteer who could help me during testing phase for the order bridge. My intent is to bypass zerodha API gateway charges as well so one would just need to have zerodha account and willing to place some test orders via a sample strategies around ORB or super trend for example (i will share during testing phase). One obliviously must have dependable laptop & good data feed.

     

    I'm most likely planning to wrap up my work in next one month thereafter would love 2-3 guys along with me to collaborate during testing phase. Please express your interest via PM only and its good to mention if you have any exposure around algo trading for Zerodha or samco.

     

    Mod, feel free to move this to other room/channel is this is supposedly not the right place

  6. Hello Vit, hope you are all set on using the indi(both mine and orflia version should work.. as others said the indicator needs market depth data enabled. i tested mine today just a while ago & it should work for you.

     

    Eric, with all due respect, got to agree with orfila however you are entitled to express your opinion in an open forum however questioning or comparing folks who are stepping in with helping hand was unwarranted. To each its own so all good!

  7. Hi friends, I have just started using NT8 so I am not aware of much resources. Can someone share EMA with button on/off on toolbar, same for pivots, previous day's levels etc. We don't require all indicators all the time while trading on charts but we should try to keep it as clean as possible. If we plot 13, 21, 50, 100, 200 EMA on a chart and we wish only 21 visible. I would appreciate any help

     

    Thank you all

    You should registered with ninja forum, there are lot of great guys there who can actively help you,

    Check this thread: ninjatrader(.)com/support/forum/forum/ninjatrader-8/indicator-development/1090344-toolbar-button-for-indicator-show-hide

     

    You can also try to code a generic add on OR an indicator which can enable you to control all indicator directly from chart chart.. I use toggle button to control strategy at realtime without needing to restart it. if you need i can provide you sample,for adding toggle button on chart via Add-on

    Capture.thumb.JPG.89d13f73ae1f840fb747960a1b9b10b0.JPG

    Once you have added those toggle buttons then can use below sample code: to enable disable indicators programmatically.

    private void btnIndicatorsClick(object sender, RoutedEventArgs e) {
    System.Windows.Controls.Button button = sender as System.Windows.Controls.Button;
    if (button != null) {
    // toggle all indicators
    foreach (var obj in chartWindow.ActiveChartControl.ChartObjects) {
    var indi = obj as Indicator;
    if (indi != null) {
    if (indiSwitch) {
    if (indi.Name !="SMA") { indi.IsVisible = false; } }
    else if (!indiSwitch) { if (indi.Name !="SMA") { indi.IsVisible = true; } } }
    }
    indiSwitch = !indiSwitch;
    chartWindow.ActiveChartControl.InvalidateVisual();
    ForceRefresh();
    }
    
    }
    
    

     

  8. thanks guys for your considerable inputs & some vague comments which i couldnt fathom out; Well there is always two sides to the coin & everyone is entitled to their opinion & rightfully so, however by believing that your views are right falsify the foundation of communication.

    First of all my main point which i raised has been recognized by some of you but none threw further insight into that.

    1. The core problem being lurkers(not everyone) without gratitude when downloading free stuff & not even having a basic courtesy to say "thank you", also Hamir made a very smart observation "Forum is about

    SHARING
    " how many care to share(in any form:-knowledge, strat, trading exp) and more importantly some of the most downloaded shares have hardly more than 10/20 likes or even less care to respond by thanking the original poster. unfortunate truth

     

    2. Some of you suggested putting a price tag of this however i'm not here to make a business out of this, you have better option in snow or Audrey or someone else. My main intent is to have it as an shareware however if you appreciate my work then considering showing your gratitude by donating towards my cloud emulator work which will benefit everyone in future. I will set up "Buy Me A Coffee" to help those who like to support my work.

  9. from my side I don't know how I would use these indicators, although obviously I like to study and apply new issue....it is also okay to have a gearbox for the hard work of cleaning....but remember that San Frencesco d'Assisi when he donated all his treasures.....afterwards he felt free 😀😀😀

     

    lol i am no San Frencesco d'Assisi man; there is lot which goes into eduatng these stuff; With all due respect to all members of this forum there are too many lurkers around here, my shares have been downloaded more than 3000+ together in last 3-4 months. Folks dont have basic courtesy to show their gratitude(its like hit & run), It's human nature to take free things for granted so moving away to sharewave model. there are bunch of folks here with whom i & they share quality stuff which improves our trading games.

  10. depends on your style of trading, i use tradefinder myself, AMS i use only zone decoder to ientify area of interest. AMS footprint is just too many numbers for me(though their imbalance style is really cool).

    AMS is proper activation via an emu (later on i would move to a cloud so that i dont need to run anything locally).

    is better tradefinder for Bookmap with dxfeed or this footprint ? amstradinggrouu

     

    The educated v. amstradinggrouu is a trial reset?

     

    thank

     

     

  11.  

    I'm moving to searching for and share any tutorial about this issue, in the meantime we can have a look here: hxxps://buysideglobal.com/pages/product-videos

     

    anyway it would be more interesting to have the BS crack....because at the cost of 2,500USD I also expect them to send me several tutorials

     

    thank you ,their site does not hv lot of edu material on usages/setups. i am trying to make out whats interesting in this $2500 worth of tools.BGJPG.thumb.JPG.2f07326e5447890caf02e0d6b39a9386.JPG

  12. This is max i could share, here is why al yours trades are visible across all users , see, if you are concerned have your RE patch this. NT keeps track of every execution so eventually they will know about their system being misused & they might take legal actions against those accounts associated with this dummy lic key, so you must take extreme caution when using any hacked version. For demo it's all okay but for real trading avoid using it.

    Not being a preacher here but for your main trading execution platform use genuine software. I have paid for lifetime license even after educating this myself because it's worth it & saves me on cheaper commission & also keeps me safe from any legal issues in future.

     

     

    WebRequest.Create(string.IsNullOrEmpty(License.NTLMUrl) ? string.Format(CultureInfo.InvariantCulture, "https://{0}/tools/NtLogExecution.php?ac={1}&ap={2}&br={3}&bi={4}&ec={5}&id={6}&tm={7}&ex={8}&fe={9}&in={10}&it={11}&lc={12}&mc={13}&mp={14}&md=Live&or={15}&ot={16}&pr={17}&qt={18}&st={19}&tk={20}&vc={21}&vs={22}"

  13. One can disable the TT credit feature and that should prevent your trades to be logged along with others, the dlls are open so anyone with some little knowledge can disable those features. the dlls are not protected. The only side impact might be that you wont be able to trade from DOM(you can use DOM but order placement from DOM would get disabled).

    Another way for those having proper license key , you can simply change license key in the dll with your, that will ensure your trades are not reported across the same lic key used by everyone using this educated version.

  14. folks i am also very close to educating KwikPoP NT8. i just need a someone who are using their services to capture server response that will help me create an emulator, PM me, in return you will get the educated copy for your use forever + any other add of your choice on Bookmap(almost all) & NT8(most of except few)
×
×
  • Create New...