Search results

  1. LinkersX

    Linkers::X - Let's code in C++ , Daytrade & Daydream :)

    # this code will compile and execute on MQL4, 5 NinjaScript, cAlgo, ACSIL SierraChart #include<LinkersX.h> //# https://stocktwits.com/LinkersX xStockTwits tweet1; xString text1; tweet1.username("LinkersX"); tweet1.password("123456789"); text1("X->Hello StockTwits. FOMC replay"); //tweet...
  2. LinkersX

    Linkers::X→theNextBigThing; in C++ Event Driven HFT Algorithmic Trading will happen here!

    Linkers::X→theNextBigThing; in C++ Event Driven HFT Algorithmic Trading will happen here!
  3. LinkersX

    Linkers::X - Let's code in C++ , Daytrade & Daydream :)

    Next to me is my friend who does't know any C++ or any other programming language. I ask her to read my code snippets and tell me line by line what the code snippet does. She has got no problem to do that. I fully agree with you, about my sometimes silly OOP design, since my brain is still in...
  4. LinkersX

    Linkers::X - Let's code in C++ , Daytrade & Daydream :)

    Absolutely no copying whatsoever in sort xSort Object no actual data being pushed into the xQueue I'm gonna give you shocking result of benchmark done on offset_ptr<>; compared to Linkers::X containers
  5. LinkersX

    Linkers::X - Let's code in C++ , Daytrade & Daydream :)

    //# https://twitter.com/LinkersX xTwitter tweet1; xString text1; tweet1.username("LinkersX"); tweet1.password("123456789"); text1("x->hello twitter!"); //tweet text1 and replay1 object as replaying HTML5 chart!!!! tweet1.tweet(text1, replay1);
  6. LinkersX

    Linkers::X - Let's code in C++ , Daytrade & Daydream :)

    why don't you recode the sortedQueue differently. Please how would you do the syntax? You can see what's floating in my mind
  7. LinkersX

    Linkers::X - Let's code in C++ , Daytrade & Daydream :)

    please share your 2 cents
  8. LinkersX

    Linkers::X - Let's code in C++ , Daytrade & Daydream :)

    sortedQueue.addMongo(BSON); i just wrote container as BSON to MongoDB sortedQueue.addMongo(JSON); i just wrote container as JSON to MongoDB //write container as JSON as file to c://LinkersX/json.txt sortedQueue.file("c://LinkersX/json.txt", JSON); // of course BSON is excripted
  9. LinkersX

    Linkers::X - Let's code in C++ , Daytrade & Daydream :)

    # this code will compile and execute on MQL4, 5 NinjaScript, cAlgo, ACSIL SierraChart #include<LinkersX.mqh> struct spread1 { double spread; xString symbol; }; xSort<spread1> sorted1; xQueue<sorted1> sortedQueue; sorted1.add(spread1); // add spread to sorted list //autosort goes on during...
  10. LinkersX

    Linkers::X - Let's code in C++ , Daytrade & Daydream :)

    // time1 will be current time now in microseconds since epoch xTime time1(xTimeNowMS()); xSleepMS(50000); // wait 50000 microseconds time1.add(xTimeNowMS()); // add another time now in micros print (time1.year(0)); //print first element print (time1.month(1)); //print second element print...
  11. LinkersX

    Linkers::X - Let's code in C++ , Daytrade & Daydream :)

    //->silly me :-))) xTime time1(replayStartTimeAsMicrosecondsSinceEpoch); renko1.replay("192.168.1.43:27017", time1, HTML5); // to replay xBars container on father in-law's MetaTrader 4 // for symbol EURUSD as UltimateRenko bar type in the browser as HTML5 charts // LOL
  12. LinkersX

    Linkers::X - Let's code in C++ , Daytrade & Daydream :)

    In Linkers::X this would translate into something like this: xMarketReplay replay1; xTime time1 ; // actual begin time of replay Microseconds resolution //init xTime.scDateTime(sierra_SCDateTime); // init xTime from SierraCharts SCDateTime replay1.loadHistory(20170101, 20171201)...
  13. LinkersX

    Linkers::X - Let's code in C++ , Daytrade & Daydream :)

    RESPECT! However in this silly thread, we will soon discover some shocking benchmark results when comparing speed of the std:: vs Linkers::X containers. Trust me bro, there is a reason why I'm avoiding the std:: implementations, and why i kept my containers hidden in the drawer for personal use...
  14. LinkersX

    Linkers::X - Let's code in C++ , Daytrade & Daydream :)

    Linkers::X c++ backend is vibrant as Sandra Afrika from this song, you see how's she bouncing around But the front-end, the actual Trading language aka MQL4 or NinjaScript wrapper for example should be like Mona Lisa. We are discussing the front-end here, and if You are seeing something...
  15. LinkersX

    Linkers::X - Let's code in C++ , Daytrade & Daydream :)

    You obviously missing the greater picture here. I wasn't asking you to analyze into a dot the source code which just Resembles to the reality, but to see if you can see the bigger pix. and how you seeing it! If you are experienced coder/trader you should see clearly what i'm trying to say here...
  16. LinkersX

    Linkers::X - Let's code in C++ , Daytrade & Daydream :)

    I tell what is Ave Maria for me... proprietary expandable size classes/containers with encrypted data storage with critical points written __ASM just to make sure that the trading information contained within is safe, waaaaay faster than the std:: implementations... xVector, xArray, xMap...
  17. LinkersX

    Linkers::X - Let's code in C++ , Daytrade & Daydream :)

    my code used to be Ave Maria when i was 13 and programming intro's and compression algorithms on commodore 64 back in 80's in pure Assembler. Today I'm not sure that it flows anymore.... You mean dubstep like this? Emphasis is on "better than a Hustler"
  18. LinkersX

    Linkers::X - Let's code in C++ , Daytrade & Daydream :)

    Well, this song "just flows" Then i guess your code "just flows" like this "Silence" I'd like you to say your opinion about my code, do you think it "just flows" in silence or not?!
  19. LinkersX

    Linkers::X - Let's code in C++ , Daytrade & Daydream :)

    Let's make things more complicated... //there could be more than one event during one tick, that's why we need: //indexBegin is the first event in the timeline of events since the EA got attached //indexEnd is the last event in the timeline void onError(EventType &e, EventIndex& indexBegin...
Back
Top