Quote from SuperCruz:
Looking forward to it, cheers!![]()
The Demo is out with an interesting offer also, as follows:
Free Demo Version of TradersStudio
Quote from SuperCruz:
Looking forward to it, cheers!![]()
The very nice initial roundup of this thread is probably a bit dated 6 years later.
Are there any new threads or other web sources where I can find a nice walk-through to see the differences between technical/quantitative analysis?
I need a tool where I can back-test and use own suppliers of data since I will be using data for the Swedish stock market (along with the US markets).
Thanks for the tip! Actually I have been looking at that. I heard that it is a bit harder to code than for instance EasyLanguage (TradeStation).
In what ways, would you say, is Amibroker better than other solutions, besides price?
TradersStudio is easier to code than AMIBroker, it's a cross between VBA and EasyLanguage.
It's better to do portfolio based trading and money management than either product.
If you are trading futures you have reports in dollar values, it calculate move values. This is something AMIBroker at least last time I looked could not do.
You can even trade international futures and do daily currency conversion so you can make US and international futures in the same basket.
Thanks for the tip! Actually I have been looking at that. I heard that it is a bit harder to code than for instance EasyLanguage (TradeStation).
value1 = CCI(20);
if marketposition = 0 then
begin
if value1 crosses over 100 then
buy next bar market
else if value1 crosses under -100 then
sellshort next bar market;
end
else if marketposition = 1 then
begin
if value1 crosses under 100 then
sell next bar market;
end
else if marketposition = -1 then
begin
if value1 crosses over -100 then
buytocover next bar market;
end;
<code>[COLOR=#000000]<code>[COLOR=#0000ff][B]SetTradeDelays[/B][/COLOR][COLOR=#000000]( [/COLOR][COLOR=#800080]1[/COLOR][COLOR=#000000], [/COLOR][COLOR=#800080]1[/COLOR][COLOR=#000000], [/COLOR][COLOR=#800080]1[/COLOR][COLOR=#000000], [/COLOR][COLOR=#800080]1[/COLOR][COLOR=#000000] );[/COLOR]</code>[/COLOR]</code><code>[COLOR=#000000]<code>[COLOR=#000000]<code>[COLOR=#008000]// one bar delay -> entry at next bar[/COLOR]</code> [/COLOR]</code>
CCI_ = [/COLOR][COLOR=#0000ff][B]CCI[/B][/COLOR][COLOR=#000000]( [/COLOR][COLOR=#800080]20[/COLOR][COLOR=#000000] );
[/COLOR]</code><code>[COLOR=#000000][B]Buy[/B][/COLOR][COLOR=#000000] = [/COLOR][COLOR=#0000ff][B]Cross[/B][/COLOR][COLOR=#000000]( CCI_, [/COLOR][COLOR=#800080]100[/COLOR][COLOR=#000000] ); [/COLOR][COLOR=#008000]// buy if crosses over 100[/COLOR][COLOR=#000000]
[/COLOR][COLOR=#000000][B]Sell[/B][/COLOR][COLOR=#000000] = [/COLOR][COLOR=#0000ff][B]Cross[/B][/COLOR][COLOR=#000000]( [/COLOR][COLOR=#800080]100[/COLOR][COLOR=#000000], CCI_ ); [/COLOR][COLOR=#008000]// sell if crosses under 100[/COLOR][COLOR=#000000]
[/COLOR][COLOR=#000000][B]Short[/B][/COLOR][COLOR=#000000] = [/COLOR][COLOR=#0000ff][B]Cross[/B][/COLOR][COLOR=#000000]( -[/COLOR][COLOR=#800080]100[/COLOR][COLOR=#000000], CCI_ );[/COLOR][COLOR=#008000]// sellshort if crosses under -100[/COLOR][COLOR=#000000]
[/COLOR][COLOR=#000000][B]Cover[/B][/COLOR][COLOR=#000000] = [/COLOR][COLOR=#0000ff][B]Cross[/B][/COLOR][COLOR=#000000]( CCI_, -[/COLOR][COLOR=#800080]100[/COLOR][COLOR=#000000] );[/COLOR][COLOR=#008000]// buycover if crosses over -100[/COLOR]</code>
<code></code>
<code>[COLOR=#000000] <code>[COLOR=#008000]// entry/exit at open price
[/COLOR]</code>[/COLOR][COLOR=#000000][B]BuyPrice[/B][/COLOR][COLOR=#000000] = [/COLOR][COLOR=#000000][B]SellPrice[/B][/COLOR][COLOR=#000000] = [/COLOR]</code><code>[COLOR=#000000]<code>[COLOR=#000000][B]Open[/B][/COLOR][COLOR=#000000];[/COLOR]</code>[/COLOR][COLOR=#000000][B]
ShortPrice[/B][/COLOR][COLOR=#000000] = [/COLOR][COLOR=#000000][B]CoverPrice[/B][/COLOR][COLOR=#000000] = [/COLOR][COLOR=#000000][B]Open[/B][/COLOR][COLOR=#000000];[/COLOR]</code>