Jump to content

puiu288

Members
  • Posts

    267
  • Joined

  • Last visited

  • Days Won

    5

Posts posted by puiu288

  1. Hi dr.,

    I guess that preparing the PhD requires a scientific accuracy of yours data sets and models. Nobody can guarantee you that a "medicated" software works accurate . Most of the time ( not time series, dr. ) it didn"t. So, why don"t you buy it , due your using it in such a serious matter ?;):) And why do you "think" this software will go the same way as your strategy if you have never tested it before ?

    Wishing you the best with your "PhD thesis", dr.;)

  2. @laser 1000it ,

    I"ll tell you a little story for fun : last year i was a team member for beta testing the latest antivirus versions for two of the leading computer software developers. Can you imagine that one of the programs after i have installed it, has detected as a virus threat and deleted it the Core of the Adobe Reader (original ) ?!!!! Hahahahahhahhahahahha :)) The story is 100% accurate!!!

  3. @laser1000it. Are you 100% sure it"s a virus ? Because if you are using Eset Smart Security or other sophisticated antivirus program, it will give you a fake virus alert on most of the modified "exe." files installed on your computer.Addionally , the developer of the antivirus you"re using might have add the download site to the list of "unsafe sites" .

    Your choice.Your luck.

  4. Thank you FX SuperTrader. That is really clear step by step guidance for connecting OD2.7to MT4.

    I guess historical data for a symbol can be uploaded into OD2.7 from MT4 using import data function and then follow the steps to connect to DDE device , so when the chart is plotting into TS8.7 it has historical data and RT connection through DDE ?

    Please post same clear instructions about MultiFeed when it would be possible.Truly need it.

    Thanks very much again.

  5. Thx for the answer.

    The problem with TS8.7and OwnData2.7 is that it cannot be runned on the same PC and on the same time with TS9.1 that i"m currently testing. In the past, I"ve tried to connect OwnData2.7 to MT4 but no success ( maybe i"ll be back some day to try again to make it work) .

    If you have Metaserver 2 or 3.2 working, RT, really working with TS2000i, please share .

    Thx.for support.

  6. Hi,

    Looking for MultiFeed 1.0 Global Server, vers. 2.1.4.53 really working( an old software piece) .I would like to test the feeding of TS 2000i with RT Metatrader data.Or HyperServer Lite Omega2000 Edition for MetaTrader.On the Internet found only non working versions I"m interested only in feeding TS 2000i with MT4 data.

    Please share. Thank you.

  7. Here is the source code for the famous Sine wave indicator by J.Ehlers for TradeStation.

     

    {Sine Wave indicator - //// From 'Cybernetic Analysis for Stocks and Futures' by John Ehlers //// code compiled by dn

    } // plot on a subgraph separate from the price region.

     

    Inputs: Price((H+L)/2), alpha(.07);

     

    Vars: Smooth(0),Cycle(0),I1(0),Q1(0),I2(0),Q2(0),DeltaPhase(0),MedianDelta(0),MaxAmp(0),AmpFix(0),Re(0),Im(0),DC(0),

    alpha1(0),InstPeriod(0),DCPeriod(0),count(0),SmoothCycle(0),RealPart(0),ImagPart(0),DCPhase(0);

     

    Smooth = (Price+2*Price[1]+2*Price[2]+Price[3])/6;

    Cycle = (1-.5*alpha)*(1-.5*alpha)*(Smooth-2*Smooth[1]+Smooth[2])+2*(1-alpha)*Cycle[1]-(1-alpha)*(1-alpha)*Cycle[2];

    If CurrentBar <7 then Cycle=(Price-2*Price[1]+Price[2])/4;

    Q1=(.0962*Cycle+.5769*Cycle[2]-.5769*Cycle[4]-.0962*Cycle[6])*(.5+.08*InstPeriod[1]);

    I1 = Cycle[3];

    If Q1<>0 and Q1[1]<>0 then DeltaPhase=(I1/Q1-I1[1]/Q1[1])/(1+I1*I1[1]/(Q1*Q1[1]));

    If DeltaPhase <0.1 then DeltaPhase=0.1;

    If DeltaPhase > 1.1 then DeltaPhase = 1.1;

    MedianDelta = Median(DeltaPhase,5);

    If MedianDelta =0 then DC=15 else DC=6.28318/MedianDelta+.5;

    InstPeriod=.33*DC+.67*InstPeriod[1];

    Value1 = .15*InstPeriod+.85*Value1[1];

    DCPeriod = IntPortion(Value1);

    RealPart = 0;

    ImagPart = 0;

    For count = 0 To DCPeriod - 1 begin

    RealPart = RealPart + Sine(360 * count / DCPeriod) * (Cycle[count]);

    ImagPart = ImagPart + Cosine(360 * count / DCPeriod) * (Cycle[count]);

    End;

    If AbsValue(ImagPart) > 0.001 then DCPhase = Arctangent(RealPart / ImagPart);

    If AbsValue(ImagPart) <= 0.001 then DCPhase = 90 * Sign(RealPart);

     

    DCPhase = DCPhase + 90;

    If ImagPart < 0 then DCPhase = DCPhase + 180;

    If DCPhase > 315 then DCPhase = DCPhase - 360;

     

    Plot1(Sine(DCPhase), "Sine",blue);

    Plot2(Sine(DCPhase + 45), "LeadSine",green);

×
×
  • Create New...