Hi Joel,<br><br>&gt; Can you post a couple of examples of what the trading strategies look like?<br><br>Here are some very simple strategies, which are written in the context of just one stock.&nbsp; If these aren&#39;t very convincing, could you post some more complex strategies that you&#39;d like to see built using this library?
<br><br>-- open long when price drops to 109.34<br>myOpenStrategy = limitOrder 109.34<br><br>-- close after done increasing or price drops below 105.12<br>myCloseStrategy openPrice = increasing openPrice &lt;|&gt; limitOrder 
105.12<br><br>-- succeed when the current price reaches or drops below the given price<br>limitOrder price = satisfy (&lt;= price)<br><br>Thanks,<br>Greg<br>