HOME FORUMS BROKERS SOFTWARE BOOKS CONTACT US
Elite Trader Your Account  •  Become a Member  •  Help  •  Search    
    Forums ›› Tools of the Trade ›› Trading Software ›› software combination  


Post A Reply
    
immanuelwoo
 

Registered: Mar 2012
Posts: 1

 

04-30-12 06:55 AM

hi all,

i wish to trade using tools that give me insights... ( will not follow blindly )

i wish to use these tools

-auto chart pattern recognition
-neural nets
-scanner
-elliot wave and fibonacci
-gann charts

i have checked neuroshell, multicharts, metastock pro 11 and motivewave

i like a abit of everything.. but none is all encompassing

the closest i can find is metastock pro 11 with all the addon that i need.. but their neural nets add on is not as good as neuroshell

also, cost extra to hook up metastock to IB via ondemand server.

any suggestions for me? last resort is to buy metastock plus neuroshell plus ondemand server.. but it could be a waste of money and i really like it to have everything in one system... and not pull the same ticker in three systems....

any good ideas? thanks in advance

    Edit/Delete Quote Complain
funnyguy
 

Registered: Feb 2012
Posts: 96

 

04-30-12 03:45 PM

http://www.amibroker.com
3rd party:
http://wisetradertoolbox.com/home.html
http://www.patternexplorer.com/


-auto chart pattern recognition

What kind of patterns? No matter what, everything can be coded in AB.


-scanner

What kind of scans? No matter what, everything can be coded in AB.


-elliot wave and fibonacci

There are some AFL scripts available. (I don't use it. belongs to esoteric area.)


-gann charts


Do you mean Gann square, Gann fan? Those are built into AB. What else is Gann related? (Sorry I'm not into esoteric stuff. never used it.)

    Edit/Delete Quote Complain
funnyguy
 

Registered: Feb 2012
Posts: 96

 

04-30-12 04:02 PM

Gann Swing chart

code:
_SECTION_BEGIN("Price"); SetChartOptions(0,chartShowArrows|chartShowDates); _N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) )); Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() ); _SECTION_END(); _SECTION_BEGIN("Gann Swing"); SetChartOptions(0,chartShowArrows|chartShowDates); _N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) )); /* Gann Swing chart v4 */ /* Last modified 24 Feb 2001 */ /* AFL implementation by */ /* (C)2001 Tomasz Janeczko */ /* one and two - bar reversal version */ /* Change this to 1 for two-bar mode */ twobarmode = 1; outsidebar = Outside(); insidebar = H <= Ref( H, -1 ) AND L >= Ref( L, -1 ); // built-in inside() works with < > instead of <= >= upbar = H > Ref( H, -1 ) AND L >= Ref( L, -1 ); downbar = L < Ref( L, -1 ) AND H <= Ref( H, -1 ); upbar2 = upbar OR ( outsidebar AND Ref( downbar, 1 ) ) ; downbar2 = downbar OR ( outsidebar AND Ref( upbar, 1 ) ); Poi = outsidebar AND Ref( insidebar, 1 ); Poo = outsidebar AND Ref( outsidebar, 1 ); Pooi = Poo AND Ref( insidebar, 2 ); Poio = Poi AND Ref( outsidebar, 2 ); Poii = Poi AND Ref( insidebar, 2 ); Pooo = Poo AND Ref( outsidebar, 2 ); Poooi = Pooo AND Ref( insidebar, 3 ); Pooio = Pooi AND Ref( outsidebar, 3 ); Poioo = Poio AND Ref( outsidebar, 3 ); upbar3 = upbar2 OR ( Poi AND Ref( downbar, 2 ) ); downbar3 = downbar2 OR ( Poi AND Ref( upbar, 2 ) ); upbar4 = upbar3 OR ( Poo AND Ref( upbar, 2 ) ); downbar4 = downbar3 OR ( Poo AND Ref( downbar, 2 ) ); upbar5 = upbar4 OR ( Pooi AND Ref( upbar, 3 ) ); downbar5 = downbar4 OR ( Pooi AND Ref( downbar, 3 ) ); upbar6 = upbar5 OR ( Poio AND Ref( upbar, 3 ) ); downbar6 = downbar5 OR ( Poio AND Ref( downbar, 3 ) ); upbar7 = upbar6 OR ( Poii AND Ref( downbar, 3 ) ); downbar7 = downbar6 OR ( Poii AND Ref( upbar, 3 ) ); upbar8 = upbar7 OR ( Pooo AND Ref( downbar, 3 ) ); downbar8 = downbar7 OR ( Pooo AND Ref( upbar, 3 ) ); upbar9 = upbar8 OR ( Poooi AND Ref( downbar, 4 ) ); downbar9 = downbar8 OR (Poooi AND Ref( upbar, 4 ) ); upbar10 = upbar9 OR ( Pooio AND Ref( downbar, 4 ) ); downbar10 = downbar9 OR ( Pooio AND Ref( upbar, 4 ) ); upbar11 = upbar10 OR ( Poioo AND Ref( downbar, 4 ) ); downbar11 = downbar10 OR ( Poioo AND Ref( upbar, 4 ) ); fupbar = upbar11; fdownbar = downbar11; // Two-bar mode handling fupbar = IIf( twobarmode, fupbar AND Ref( fupbar, 1 ), fupbar ); fdownbar = IIf( twobarmode, fdownbar AND Ref( fdownbar, 1 ), fdownbar ); /* Barcount since most recent up and down swings */ Us = BarsSince( fupbar ); Ds = BarsSince( fdownbar ) ; Sd1 =IIf( Us==0, 1, IIf( Ds==0, -1, 0) ); Sd2 = IIf( Sd1 == 1, IIf( Ref( BarsSince(Sd1==1), -1) > Ref( BarsSince( Sd1 == -1), -1), 1, 0), IIf( Sd1 == -1, IIf( Ref( BarsSince(Sd1==1),-1) < Ref( BarsSince( Sd1 == -1),-1), -1, 0), 0 ) ); g0 = ValueWhen( Sd2, Sd2 ); /* sample and hold non-zero values */ /* shift back one bar, add one dummy swing at the end and shift forward */ /* to ensure proper handling of the last swing */ lastbar = Cum(1) == LastValue( Cum(1) ); swinglevel = IIf( g0 == -1, HighestSince( Sd2 == 1, H ), LowestSince( Sd2 == -1, L ) ); swinglevel = IIf( lastbar, IIf( g0 == -1, LowestSince( Sd2 == -1, L ), HighestSince( Sd2 == 1, H )), Ref( swinglevel, 1 ) ); /* Gann Swing chart drawn here */ myGraph1 = Ref( ValueWhen( Ref( Sd2 != 0, 1 ) OR lastbar, swinglevel , 0 ), -1 ); Plot( myGraph1, "graph1", ParamColor("SwingColor", colorBlueGrey ), styleStaircase/*|styleSwingDots*/, Null, Null, 0); GraphXSpace = 5; _SECTION_END();

    Edit/Delete Quote Complain
    
Post A Reply


Receive an email whenever a new post is added to this thread by subscribing to it.
 
Rate This Thread:

Forum Jump:
 

 

   Conduct Rules  -  Privacy Policy  -  Day Trader -  Day Trader Forum -  Best Trading Software -  Sitemap Copyright © 2013, Elite Trader. All rights reserved.    
 
WHILE YOU'RE HERE, TAKE A MINUTE TO VISIT SOME OF OUR SPONSORS:
Advantage Futures
Futures Brokerage & Clearing
AMP Global Clearing
Futures and FX Trading
Bright Trading
Professional Equities Trading
CTS
Futures Trading Software
DaytradingBias.com
Professional Trading Analytics
ECHOtrade
Professional Trading Firm
eSignal
Trading Software Provider
FXCM
Forex Trading Services
Global Futures
Futures, Options & FX Trading
Interactive Brokers
Pro Gateway to World Markets
JC Trading Group
Direct Access Trading
MB Trading
Direct Access Trading
MultiCharts
Trading Software Provider
NinjaTrader
Trading Software Provider
OANDA
Currency Trading
optionshouse
Option Trading & Education
Rithmic
Futures Trade Execution Platform
SpeedTrader
Direct Access Trading
SpreadProfessor
Spread Trading Instruction
thinkorswim by TD Ameritrade
Direct Access TradingAdvertisement
TradersStudio
System Building & Backtesting
Trading Technologies
Trading Software Provider
Trend Following
Trading Systems Provider