Jump to content

mambo123

Members
  • Posts

    88
  • Joined

  • Last visited

Posts posted by mambo123

  1. thanx for reply mambo123, actually I am looking for a crack or the patched wowrt.dll, client.dll for TS9.1.

     

    Ah ok :)

     

    Unfortunately I'm not aware of a cracked TS 9.1 version :(

     

    If you only trade the forex with quoteroom (QR) you don't need a cracked version, as QR has an emulator for TS.

     

    If you trade another markets, you will need to plug into TS the program Owndata version 3.0 that is NOT (free) cracked either afaik :((

  2. IB does not deliver real time streaming tick data, their data feed is what's called "real time sample data", it will not have complete tick data

     

    Totally agree, it was they call a "snapshot" of the market, taken around 2 times a second... totally useless if you want to trade with ticks charts.

     

    For this reason I've closed my IB account years ago :))

  3. Let me see if I have this correct. You're very first post, you promised to share. You then later post that you can't post it. Instead of asking others how to do so, you again hesitated and kept members waiting for the system. You then want people to contact you by email in regards to the system to then find out your true intentions are to sell it.

     

    What part of violating the forum rules do you not comprehend. Let us know if your intentions are to share or to sell it.

     

     

     

    Best thing to do is to forget this guy ... definitively :)

  4. QuoteRoom installed but when the program gives me an error of Runtime 217. None of you has ever had?

    I already tried to disable the start of programs including antivirus software, but always a mistake as soon as it launches... :(

     

    Seems to be an error from your windows instalation, not quoteroom :(

     

    Have a look here : http://ezinearticles.com/?Runtime-Error-217---How-to-Fix-This-Common-Windows-Error&id=4657538

  5. Hello guys,

    is my first message of this great forum that I recently discovered.

    Then I come to the point: I would like to install tradestation 9.1.

    I have no subscription data available to me and would affect the Forex data, the Dax and the Stoxx.

    Can you please help me step by step in downloading (where), install, configure and take down historical data for studies?

    Think it's more functional and cracked the Td 8.7 that the 9.1?

    Thank you so much to all ....

     

    Simon

     

    Hey Simon :)

     

    For the forex stuff you can use quoteroom from forexite with ts 9.1 and you won't need anything else :)

    There's plenty of info about that on this forum.

     

    For the dax and stoxx i'm not aware of any similar solution: u'll need owndata 3.0 (uncracked afaik), or u'll have to use ts 8.7 with owndata 2, and of course a data feed.

     

    Hope it helps :)

  6. Does the crack for TS 8.7 work with TS 9.1??? I Installed TS 9.1 .NET and applied all procedure like TS 8.7 with same crack which is of TS 8.7 but the TS 9.1 does not run.......

     

     

     

    Nope :(

     

    I mean, the client.dll and the wowrt.dll are version specific, so you must have the correct patched dll for your particular TS version.

     

    However, if you only trade forex, you don't need a patch to execute ts 9.1, as quoteroom from forexite emulate the data feed for TS. You don't even have to work "offline", as with this emulation TS thinks it's online :))

  7. Thx u very much, know a bit more now :)

     

    Do I have to be afraid of legal stuff if I use those "free" EAs on live account ?

     

    Many Thanks & Cheers

     

    It'd be VERY doubtful if a metatrader broker knew what EA you are using hehehe

     

    As long as you pay the spread and/or commissions and you support the requotes, i think you'll be safe :))

  8. Hi mambo,

    Here in the indis you want:

    http://www.mediafire.com/?8k86h8c3x9qdip7

    http://www.mediafire.com/?kavh0bfytta2smv

     

    Can you help me to make the Eyang Indi to become not repaint, and share here in mq4?

    Thank you and regards,

    Anton

     

    Yep i have coded it.

     

    Will check tomorrow if it doesn't repaint, and if not i'll publish it here.

     

    Btw, if it doesn't repaint it'll be VERY interesting :)

     

     

    Edit: nope, it will repaint :((, almost sure of that ...

    In fact it's the "snake" indi that repaints: It's evident in this loop:

     

    for(j=Shift-Snake_HalfCycle,i=Shift+Snake_HalfCycle,w=1;

    w<= Snake_HalfCycle;

    j++,i--,w++)

    {

    Snake_Sum=Snake_Sum+w*(SnakePrice(i)+SnakePrice(j));

     

     

    The loop on i will search past values, but the one for j will seek futures values of the indi :(

     

    It will repaint in a width corresponding to the parameter Snake_HalfCycle

  9. Don't waste your time with this...

     

    ForexSniperPro_Trend.mq4, ForexSniperPro_SRLevels.mq4, ForexSniperPro_MasterOscillator.mq4 and ForexSniperPro_Direction.mq4 all four repaints, as all of them use the same loop to calculate:

     

    for (int li_4 = 0; li_4 < MathMax(2, li_0); li_4++)

     

    meaning that each of them begins with the last bar on the chart (li_4 = 0) up to the bar that has changed in real-time update.

     

    Only ForexSniperPro_BuySellPoints.mq4 doesn't repaint, but as it uses the others as custom indicators, no need to say anything else :))

  10. http://www.4shared.com/file/73SSWbHN/EYANG_PANAH_H1.html

     

    Decompiled, I can't see any protection,

     

    AKN

     

    Hi Aknforex

     

    For decompiling ex4 I have the ex4-to-mq4 soft version 4.0.224.1, and, with this version, it says that it's either protected or broken. If you have another soft to do this job (or a more recent version that the one I have), could you kindly share it ? :)

     

     

    Anton:

    For the decompiled soft, several remarks:

     

    It needs 2 custom indicators named "snake" and "t3_clean", and obviously if you don't have them this indicator won't show anything lol.

     

    Be aware that this indicator has a high probability to repaint what it may show, as the calculations goes from the last bar (li_8 = 0) to the numbers of bars the indicator has to compute when bars change (li_0).

     

    If you want to be certain that the indi doesn't repaint, change this line:

    for (int li_8 = 0; li_8 < li_0; li_8++) {

     

    by this one:

    for (int li_8 = li_0 - 1 ; li_8 >= 0; li_8--) {

     

    and after that check the signals you get and compare before and after this change :)

     

     

    Please kindly share the 2 customs indis, snake and t3_clean, I'm curious to see what it does ;)

  11. The guys that sell this Max **** are only in it for money. Basicaly they just took some old dead guys system and are cashing in. The 2 morons chris and craig who spam everyone with Max shite ads and emails dont even trade and they had to find this Usebio dude from France or somewherw with a thick broke accent u cant even understand to show off with b.s. trades.

     

     

    How rude... but so true =))

×
×
  • Create New...