I appreciate the encouragement but "full time" trading is not something I am seeking at this point. My trading is 100% automated which frees me to pursue other income generating activities.
Anyone who wants to retire at 30 years of age clearly does not have a wife and kids, thus not fully realizing the value of having a reason to leave the house the each day.
I just don't see Biden being able to go the distance without imploding...I don't think he has the mental or physical stamina for a general election campaign.
Man...that post reads like a statement of work you would give to a programmer for hire. You will get better feedback if you have very targeted questions...not here is all my code and I have a bunch of problems with it.
Since I launched, it is probably a wash. My goal is to have my backtest match live trading which I am currently achieving by not triggering exit orders during after hours trading.
@jbax Any plans on adding the ability to backtest / live trade multiple strategies concurrently where you would have a risk management component that would "approve" the trades before they are sent to the broker?
If you like, message me and let me know what you are up to before you spend any money on programmers. I am not interested in the job but would gladly offer free advice in terms project feasibility.
Short 1 NQ contract at 8230.5 for 10 minute bar strategy
Stop at 8282
Limit at 8124.75
Exit after 80 bars
Short 2 ES contracts at 3086.75 for 10 minute bar strategy
Stop at 3103
Limit at 3052.75
Exit after 80 bars
Looks like a fun project! One suggestion...perhaps pass in the time intervals into the constructor.
public ExampleStrategy() {
indicators.add(boll5m = new BollingerBand(TimeInterval.minutes(5)));
indicators.add(boll1h = new BollingerBand(TimeInterval.hours(1)));
}
could be:
public...