NexusFi: Find Your Edge


Home Menu

 



Showing results 1 to 24 of 24
Search: Posts Made By: colion
Forum: Platforms and Indicators October 3rd, 2015, 01:04 AM
Replies: 6
Views: 4,442
Posted By colion
You can use Level 2 in AmiBroker. There are...

You can use Level 2 in AmiBroker. There are threads about importing Level 2 data at the AmiBroker Yahoo Group forum. A quick search turned up message # 133082 and 171503 but there are probably...
Forum: Platforms and Indicators March 13th, 2015, 09:36 AM
Replies: 2
Views: 1,853
Posted By colion
I assume that you have an account with IB so just...

I assume that you have an account with IB so just contact Customer Support.
Forum: Platforms and Indicators March 11th, 2015, 11:23 PM
Replies: 1
Views: 1,326
Posted By colion
You can find all keywords and functions in the...

You can find all keywords and functions in the Users Guide, under Help, and at amibroker.com
Forum: Platforms and Indicators September 29th, 2014, 06:04 PM
Replies: 3
Views: 1,503
Posted By colion
Some questions and "to dos": 1 - Give us a...

Some questions and "to dos":

1 - Give us a couple of examples - which symbols and dates and timeframe (daily/historical). Are all of the errors like 5-120-5? Are you by chance looking at a split...
Forum: Platforms and Indicators September 29th, 2014, 09:20 AM
Replies: 3
Views: 1,503
Posted By colion
You might try downloading again as Yahoo often...

You might try downloading again as Yahoo often corrects data (or rather their data supplier catches the problem and corrects) and this is particularly true for historical data rather than Daily. To...
Forum: Platforms and Indicators August 17th, 2014, 08:56 AM
Replies: 2
Views: 3,906
Posted By colion
What code are you using? Can you plot the...

What code are you using? Can you plot the strategy and see buy/sell arrows (not the channel at each bar)? If so, I don't see why backtest would not work. Have you tried starting with a simpler...
Forum: Platforms and Indicators August 12th, 2014, 08:51 AM
Replies: 2
Views: 6,191
Posted By colion
filter = 1; limitVolume = ma( v, 30 ) > 100000;...

filter = 1;
limitVolume = ma( v, 30 ) > 100000;
addcolumn( limitVolume, "limitVolume" );
Forum: Platforms and Indicators August 9th, 2014, 08:24 AM
Replies: 3
Views: 2,682
Posted By colion
When you purchased AmiBroker you gained access to...

When you purchased AmiBroker you gained access to their Support channel. Have you thought of asking Support? Personally, I don't know if this can be done. The color does change as the background...
Forum: Platforms and Indicators May 22nd, 2014, 09:46 PM
Replies: 1
Views: 1,284
Posted By colion
Put your definition of body length in the...

Put your definition of body length in the following:

highofhighbody = valuewhen( hhv( body length, 288 ), h );
Forum: Platforms and Indicators May 19th, 2014, 12:14 AM
Replies: 2
Views: 3,790
Posted By colion
You can use something like this which will plot...

You can use something like this which will plot horizontal lines at H, L of bar selected:

plot( c, "", color, style );
selectH = selectedvalue( H );
selectL = selectedvalue( L );
plot( selectH,...
Forum: Platforms and Indicators May 2nd, 2014, 07:33 AM
Replies: 11
Views: 6,204
Posted By colion
Have you looked at the ApplyStop() function or...

Have you looked at the ApplyStop() function or the codes in the library?
Forum: Platforms and Indicators March 28th, 2014, 08:05 AM
Replies: 10
Views: 4,940
Posted By colion
Why are you using an outdated version of...

Why are you using an outdated version of AmiBroker? The latest is 5.74 which might contain functionality that you need and is not in 5.60. AmiBroker is a rapidly changing and expanding platform.
Forum: Platforms and Indicators March 26th, 2014, 08:14 AM
Replies: 1
Views: 2,252
Posted By colion
I assume that you have price data and have set...

I assume that you have price data and have set AmiBroker data folder in the program. Then

Plot( C, "", colorPaleGreen, styleBar ); //use any color and bar style

All of this is explained in...
Forum: Platforms and Indicators August 28th, 2013, 07:13 AM
Replies: 2
Views: 3,743
Posted By colion
bbPercent = 100 * ( C - bbBottom ) / ( bbTop -...

bbPercent = 100 * ( C - bbBottom ) / ( bbTop - bbBottom );
Forum: Platforms and Indicators July 3rd, 2013, 10:25 AM
Replies: 18
Views: 12,421
Posted By colion
1) How long have you been using AmiBroker? 10+...

1) How long have you been using AmiBroker? 10+ years
2) What are your favorite features of AmiBroker? Fast execution, fairly easy language, easy to build custom indicators, fast scan of database...
Forum: Platforms and Indicators October 12th, 2012, 09:22 AM
Replies: 14
Views: 13,373
Posted By colion
Download the SDK (software development kit). The...

Download the SDK (software development kit). The Users Guide has some helpful information and you can get more by joining the AmiBroker DLL Yahoo Group.
Forum: Platforms and Indicators October 2nd, 2012, 11:14 PM
Replies: 3
Views: 2,774
Posted By colion
You can also check out books by Bandy - Blue Owl...

You can also check out books by Bandy - Blue Owl Press
Forum: Platforms and Indicators July 22nd, 2012, 09:42 AM
Replies: 15
Views: 16,755
Posted By colion
Do you know how AmiBroker, Multicharts, and...

Do you know how AmiBroker, Multicharts, and Ninjatrader compare to Tradestation? Thanks.
Forum: Platforms and Indicators April 12th, 2012, 11:47 AM
Replies: 23
Views: 18,261
Posted By colion
As good as their data supplier. Yahoo and Google...

As good as their data supplier. Yahoo and Google do not change what they receive from their data suppliers so check them out if you like.
Forum: Platforms and Indicators April 11th, 2012, 10:43 PM
Replies: 23
Views: 18,261
Posted By colion
Yahoo and Google are not data suppliers. They...

Yahoo and Google are not data suppliers. They simply post what is sent by their data sources which include all of the standard names such as CSI. Any errors should be reported to them or the data...
Forum: Platforms and Indicators February 28th, 2012, 07:54 AM
Replies: 74
Views: 53,126
Posted By colion
Mike, What do you mean by a "discretionary"...

Mike,

What do you mean by a "discretionary" trader. I'm also classify myself as a discretionary trader which to me means that I do not use a mechanical system but rather make decisions based on a...
Forum: Platforms and Indicators January 25th, 2012, 09:18 AM
Replies: 1
Views: 2,530
Posted By colion
You are dealing with poorly written code....

You are dealing with poorly written code. BarIndex() returns an array in which the first bar is 0 in contrast to Barcount which is the number of bars (a single number) starting at 1. If this makes...
Forum: Platforms and Indicators October 30th, 2011, 09:31 AM
Replies: 74
Views: 53,126
Posted By colion
I've used AmiBroker for about 10 years (as I...

I've used AmiBroker for about 10 years (as I recall) and in my view AmiBroker's strength lies in backtesting and ease of programming (see full description at website) even the most complex...
Forum: Options August 2nd, 2011, 07:56 AM
Replies: 7
Views: 5,275
Posted By colion
You can get the data from the CBOEwebsite in...

You can get the data from the CBOEwebsite in spreadsheet format which you should then be able to use in your charting program.
Showing results 1 to 24 of 24

What unexpected challenges have you encountered while trading on a "Funded Trader" platform?

 


 
 


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top