Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello one and all,
I have bit of challenge to some of you guys who know how to interpret excel programs - and have little knowledge of the stock market I have attached an excel program that attempts to find out when a stock (or any security) on the New York Stock Exchange has reversed from what we call bullish to bearish. Let me try to explain a little further: When traders are buying a particular stock, lets say Microsoft (MSFT), the volume of shares of that stock will typical go up which is referred to a bullish or buying volume. On the flip side when traders are selling a particular stock the volume of the shares may still go up but its no longer bullish volume but is now referred to bearish or selling volume. The attached program attempts to find when the volume changes from bullish to bearish, and vica versa. I was wondering if someone could just give me a breakdown of how the program achieves this end? Cheers Carlton Volume Reversal Alerts = (If((H<Ref(H,-1)) AND (L<Ref(L,-1)) AND (V<Ref(V,-1)),-1,(If((HRef(H,-1)) AND (LRef(L,-1)) AND (VRef(V,-1)),1,0)))) *** Sent via Developersdex http://www.developersdex.com *** |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Understanding formula | Excel Worksheet Functions | |||
Understanding SUMPRODUCT | Excel Worksheet Functions | |||
NOT UNDERSTANDING THE FORMULA | Excel Worksheet Functions | |||
Understanding a formula | Excel Worksheet Functions | |||
Understanding declarations | Excel Programming |