This is Queue method of work. 
            	AutoDynamic: Store all elements in sliding window specified by time period. Automatically drop element when it out of the window.
            
 
    Namespace: 
   FinAnalysis.Base
    Assembly:
   FinAnalysis.Base (in FinAnalysis.Base.dll) Version: 2.1.13-cc97e13414b71fde928e8f3a546ac1daf26f295f
 Syntax
Syntax Members
Members|  | Member name | Value | Description | 
|---|
|  | SingleElement | 0 | SingleElement: Queue store only one single element. (Useful as default method for indicators history storing) | 
|  | ManualControl | 1 | ManualControl: Support all typical operations specific to Dequeue. (Useful for some custom work). | 
|  | AutoDynamic | 2 | AutoDynamic: Store all elements in sliding window specified by time period. Automatically drop element when it out of the window. | 
|  | AutoStatic | 3 | AutoStatic: Store all elements in sliding window specified by number elements to store. Automatically drop element when it out of the window. | 
 See Also
See Also