Registered User Joined: 9/28/2009 Posts: 135
|
Currently when I export data from SF I go to the File>Export Data to get the data.
Does SF offer an API that I could use to get this?
|
Registered User Joined: 12/31/2005 Posts: 2,499
|
No. You can however with the use of label get a single indicator to export multiple indicators.
For example
'# MA1 ...
'# MA2 ...
'# MA3 ...
label = MA1.value & "," & MA2.value & "," MA3.value
plot = (MA1.value + MA2.value + MA3.value)/3
would output 4 values
|