footon wrote:mixmanmatt wrote:Blaiserboy wrote:This project is open source, and the contributors will be pleased to have your assistance.
Really I only have visual basic and I don't know where to get the source code, but now I will take a look to see if I can alter the moving average indicator
All info is available in this forum, just search, read, learn and code the living daylight out the MA
Start here: http://forexsb.com/forum/forum/38/developers-forum/
Wow I just looked at the code for the moving average oscillator and its way to advanced for me but I would like to see an option to use the indicators along with your own if statements and chart calculations
For example:
You could make it possible for someone to program in a candlestick pattern by inputing code like:
(its a very very very simple way to program a buy hammer)
if
lastcandle1.close > lastcandle1.open and lastcandle1.close = lastcandle1.high
then
buysignal = true
buysignal.price = lastcandle.close
else
buysignal = false
end if
(you could add additional code indicate a tail just by using if statements and simple math)
I know this would be difficult but if you had a system that assigns previous bars a number starting at 1 for the newestest candle and 2, 3, 4 for more past candles.