PureBytes Links
Trading Reference Links
something like this: x=MA(Min(H-O,O-L),10); Plot(x,"",colorRed,styleLine); ----- Original Message ----- From: john10987654321 To: amibroker@xxxxxxxxxps.com Sent: Saturday, August 29, 2009 6:20 AM Subject: [amibroker] Help with an indicator formula I need help writing an indicator: The 10 period SMA of the absolute difference between the open and either the high or low, whichever difference is smaller. Any advice appreciated.
x=MA(Min(H-O,O-L),10);
Plot(x,"",colorRed,styleLine);
----- Original Message ----- From: john10987654321 To: amibroker@xxxxxxxxxps.com Sent: Saturday, August 29, 2009 6:20 AM Subject: [amibroker] Help with an indicator formula I need help writing an indicator: The 10 period SMA of the absolute difference between the open and either the high or low, whichever difference is smaller. Any advice appreciated.
I need help writing an indicator: The 10 period SMA of the absolute difference between the open and either the high or low, whichever difference is smaller. Any advice appreciated.