Ryan Olson![]() Veteran ![]() ![]() ![]() Posts: 170 Joined: 12/29/2006 Location: Austin, Tx ![]() | The answer isn't as easy as "no". You can pass quite a few things into indicators: For example, SMA can take SMA(50), SMA(V,50) SMA((C-H), 50) but not tuples, dictionaries but you are able to pass some information directly into indicators. If you are building the indicator you will only be able to pass the parameters you have built in but not data series. However, inside the indicator you are in control, you can calculate whatever you want, you have access to price, volume, read from data files and more. As far as "true" overloading operators - this is a concept used in OOP programming and not completely implemented in OmniLang. |