| Name: |
Harnessing The (Mis)Behavior Of Markets |
| Description: |
In “Harnessing The (Mis)Behavior Of Markets” author Rick Martinelli illustrates how to develop a profitable trading strategy based on the idea that a signal occurs when the predicted price change exceeds the average of the most recent changes.
The described strategy strongly depends on coefficient selection and so you can choose from two ways for applying the technique in Tradecision.
1) Enter strategy rules using Strategy Builder. In the Optimize Strategy dialog box, select a symbol and then optimize the CoLong and CoShort parameters in a range from 0 to 1, with step 0.1. After that, register the best strategy.
Entry long:
var
al:= (LRL(C,3,0)-C) / StdDev(C,7);
CoLong:=#;
end_var
return Al > CoLong;
Entry Short:
var
al:= (LRL(C,3,0)-C) / StdDev(C,7);
CoShort:=#;
end_var
return Al < -CoShort;
|
| Function Name: |
|
Download to import into Tradecision. 
How to use this strategy in Tradecision:
- Click Download.
- Save this strategy in a safe location on your hard drive.
- Open Tradecision and in the Tools menu click Strategy Builder.
- In the Strategy Builder dialog, click Import, locate the saved file and then click OK.
The strategy will be added to the Strategy list.
|