
Recently in Python Category

Range("P1").Select
ActiveCell.FormulaR1C1 = "Hammer Formula"
Range("P2").Select
ActiveCell.FormulaR1C1 = _
"=IF(AND((RC[-13]-RC[-12])>(3*(RC[-14]-RC[-11])),(((RC[-11]-RC[-12])/(0.001+(RC[-13]-RC[-12])))>0.6),(((RC[-14]-RC[-12])/(0.001+(RC[-13]-RC[-12])))>0.6)),1,0)"
Range("P2").Select
Selection.Copy
Range("P3:P154").Select
ActiveSheet.Paste
Secret link to my trading code/strategy.
Long time linker (and reader hopefully) Max Dama maintains a great blog on automated trading and provides lots of great examples on how to do this. I recently discovered that he has quite a few Python programming examples as well. I'll have to spend more time there again digging through his posts and I suggest my readers do too.
With the encouragement of @W0nk0, I've decided to start fooling around with the scripting language Python. It appears to be an easy script language to learn and I hope to build various routines that will help me with my Automated Trading System. There's also an open source ANN library for Python (and others) that I plan on fooling around with too. That, coupled with ibPY, will let me finally build my ATS over the course of the year(s) and hook it up to Interactive Brokers.



