Data, FAQs, Stock Model FAQs, VBA Code
The code isn’t broken. The error you’re getting can mean one of 4 things: 1/ you did not save the .csv files you downloaded with TICKER.csv in ALLCAPS (replace TICKER with your desired symbols) 2/ your list of ticker symbols in the Controls worksheet are not in...
FAQs, Stock Model FAQs, VBA Code
Question: When I attempt to run the model with AAPL and several other stocks, I get a type mismatch error from Excel, and then in attempting to debug the model code, this is what is displayed (see below.) I realize that it is not recognizing the indicator variables,...
Articles, Excel Models, VBA Code
Top quality trading VBA must be written in a highly module-based manner. Applying Microsoft’s native VBA capabilities, you can create a selection of custom functions which will then be called within your VBA and with user controls such as checkboxes. The more...
Articles, Excel Models, VBA Code
Trading model rules are based on IF-THEN statements, Variables, Loops, and Arrays. If-Then StatementsAn IF-THEN statement is a way of conditionally evaluating inputs against pre-set criteria or rules. It is based on sequential linear logic, which is the way...
FAQs, Fund Model FAQs, VBA Code
Here is the code that was highlighted in blue: ’open data .csv file and copy column B data to \Data/ sheet Also, this phrase was highlighted in yellow: Sub Load_Data( ) This problem is typically caused by a missing or mis-named .csv data file, ticker symbol, or data...