pikachu Posted February 7, 2014 Report Posted February 7, 2014 http://www53.zippyshare.com/v/984367/file.html reup in 4shared plz Quote
FX_SuperTrader Posted February 7, 2014 Report Posted February 7, 2014 (edited) http://www53.zippyshare.com/v/984367/file.html reup in 4shared plz In 4shared I find this file: hxxp://[email protected]/get/235913912/d6ba1ca6/NEXGEN.html This Nexgen only work in Tradestation, but not in Multicharts. Edited February 7, 2014 by FX_SuperTrader FXWallabie and axl 2 Quote
FX_SuperTrader Posted February 7, 2014 Report Posted February 7, 2014 For Market Profile for TS and MC, search in: http://kurtosistrading.com/blogspot/?page_id=520 Look for TPOsPro5.0b. The indicators in this blog are free. FXWallabie 1 Quote
pikachu Posted February 8, 2014 Report Posted February 8, 2014 For Market Profile for TS and MC, search in: http://kurtosistrading.com/blogspot/?page_id=520 Look for TPOsPro5.0b. The indicators in this blog are free. Hi its nice find,thanks a lot.But it's like MP but is it exactly MP?? And where is the other stuff,TVM etc.? Quote
djdjdj Posted March 3, 2014 Report Posted March 3, 2014 http://www.precisiontradingsystems.com/precision_oscillator.htm please re upload , someone! for ts,[-O<[-O< Quote
⭐ Unclepips Posted March 7, 2014 Report Posted March 7, 2014 If anybody can reup all tradestation indicators package, I would be really appreciate it. I just now am trying to learn how to use tradestation. Kind regards, Unclepips Quote
FX_SuperTrader Posted March 8, 2014 Report Posted March 8, 2014 Here a link with many Systems and Indicators for TS and MC: http://www.4shared.com/file/lpkaULtz/ ⭐ val2004, FXWallabie, ⭐ whinny and 3 others 6 Quote
puiu288 Posted April 10, 2014 Report Posted April 10, 2014 Elwave addon for TS , please upload .Thx kindly. Quote
FX_SuperTrader Posted April 10, 2014 Report Posted April 10, 2014 (edited) Elwave addon for TS , please upload .Thx kindly. Hi puiu288; Elwave .ELD files was included in installation folder in Program files. Go to Program files > Common files > PrognosisUDS folder, and look for "elwave.eld" file, and install this .eld file in Tradestation. Also read the instructions in "Elwave For TradeStation", .doc file included in the same folder. Edited April 10, 2014 by FX_SuperTrader puiu288 1 Quote
puiu288 Posted April 10, 2014 Report Posted April 10, 2014 (edited) Thx mate , looking good except the Elwave oscillator i was not able to find in the eld.file imported from the Elwave. The accuracy has to be tested on . Best regards. Edited April 10, 2014 by puiu288 Quote
FX_SuperTrader Posted April 10, 2014 Report Posted April 10, 2014 (edited) Hi puiu288; Here the code for Elliot Wave Oscillator indicator, only copy and paste, next compile: ///////////////////////////////////////////////////////////////////////////////////// Inputs: Length_MRAMidPt_1 (5), //Original Setting (5) Length_MRAMidPt_2 (34); //Original Setting (34) Vars: MRA_ElliotOsc(0), MRA_MidPt(0); MRA_MidPt = (High+Low) * 0.5; MRA_ElliotOsc=Average(MRA_MidPt ,Length_MRAMidPt_1)-Average(MRA_MidPt ,Length_MRAMidPt_2); Plot1(MRA_ElliotOsc,"ElliotOsc"); Plot2(0,"ZeroLine",white); ///////////////////////////////////////////////////////////////////////////////////////////////////////// Edited April 10, 2014 by FX_SuperTrader puiu288 1 Quote
puiu288 Posted April 10, 2014 Report Posted April 10, 2014 (edited) Thanks a lot . How can it be made to plot like this :http://rghost.net/53971348 ? Now it shows a single line . Edited April 11, 2014 by puiu288 Quote
puiu288 Posted April 11, 2014 Report Posted April 11, 2014 Hi again, Inside the 196 tss package, i found R MESA 3a strategy.After installing it , it shows the message :Cannot find .dll library . Anybody can share the missing .dll file ? Thx very much Quote
FX_SuperTrader Posted April 11, 2014 Report Posted April 11, 2014 Thanks a lot . How can it be made to plot like this :http://rghost.net/53971348 ? Now it shows a single line . The single line is the EW Osc, but in the image have a Moving Average, and also plot a difference between EW Osc and this Mov Avge. Is similar to MACD, only that the MACD use close to close, but EW Osc use (High+Low)*0.5 The code is: ///////////////////////////////////////////////////////////////////////////////////// Inputs: Length_MRAMidPt_1 (5), //Original Setting (5) Length_MRAMidPt_2 (34), //Original Setting (34) MovingAvge_Length (9); // Any Vars: MRA_ElliotOsc(0), MRA_MidPt(0), MovAvge(0), Difference(0); MRA_MidPt = (High+Low) * 0.5; MRA_ElliotOsc=Average(MRA_MidPt ,Length_MRAMidPt_1)-Average(MRA_MidPt ,Length_MRAMidPt_2); MovAvge = Average (MRA_ElliotOsc, MovingAvge_Length); Difference = MRA_ElliotOsc - MovAvge; Plot1(MRA_ElliotOsc,"ElliotOsc",red); //Line Plot2(0,"ZeroLine",white); Plot3(MovAvge,"MovAvge",blue); //Line Plot4(Difference,"Diff",yellow); //Histogram ///////////////////////////////////////////////////////////////////////////////////////////////////////// puiu288 1 Quote
puiu288 Posted April 11, 2014 Report Posted April 11, 2014 (edited) Refrain from making frivolous postings...again Edited September 4, 2014 by FloridaTrader Quote
puiu288 Posted April 11, 2014 Report Posted April 11, 2014 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); FX_SuperTrader 1 Quote
Chromium Posted April 30, 2014 Report Posted April 30, 2014 Guys, can someone reupload the eminiwatch collection, I lost my hdrive.... Quote
LINCOLN Posted May 22, 2014 Report Posted May 22, 2014 Catch http://www.edisk.eu/en/download/70653/1.rar_5.68MB.html ⭐ whinny and ⭐ val2004 2 Quote
lipe.fx Posted May 29, 2014 Report Posted May 29, 2014 someone would have elwave for Tradestation? thanks Quote
⭐ bunty Posted August 26, 2014 Report Posted August 26, 2014 (edited) Dear Friends , Do anyone have forcast indicator (timing tools) for ts which simulate market for future 3 months by larry william pls share regards and thanks Edited September 1, 2014 by bunty Quote
⭐ rawos Posted July 13, 2015 Report Posted July 13, 2015 Rina Dynamic Zones-Systems. hxxp://r@[email protected]/files/268972972/Rina_-_DynamicZone_Indicator.zip.html Someone still have it? There isn't on their site anymore Quote
⭐ sisirchow Posted September 12, 2015 Report Posted September 12, 2015 can anyone please upload kwikpop for tradestation. Quote
eros1973ms Posted September 23, 2015 Report Posted September 23, 2015 Hi guys, does anyone have the indicators from TradersHelpDesk for Tradestation? https://www.tradershelpdesk.com/shop/day-trading-indicators-silver-package/ I understood that someone got from BM the NinjaTrader replicas, but I need for tradestation... thanks a lot eros Quote
Sixer Posted September 23, 2015 Report Posted September 23, 2015 eros173ms, these indicators are included in the silver package: ADX indicator Trend Average True Range Stop Indicator RSI and RSI Meter Indicator Directional Volume Indicator Volume Divergence Average True Range Divergence There are built-in or you will find it in the web. Sixer Quote
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.