Support Board
Date/Time: Tue, 26 Nov 2024 01:59:57 +0000
Post From: ACSIL How to identify a study?
[2024-01-29 14:28:10] |
User43 - Posts: 101 |
I updated to the latest version 2586 64-bit revision 48734M and wrote a little test study. The attached screen shot shows the studies I've on my chart, and below is the result of using the different functions. All of them return the Short Name if set. i=0 GetStudyName=MESH24_FUT_CME [CBV][M] 1000 Volume #1 GetStudyNameFromChart=MESH24_FUT_CME [CBV][M] 1000 Volume #1 GetStudyNameUsingID=MESH24_FUT_CME [CBV][M] 1000 Volume #1 GetStudyInternalIdentifier=MESH24_FUT_CME [CBV][M] 1000 Volume #1 i=1 GetStudyName=MESH24_FUT_CME [CBV][M] 1000 Volume #1 Heikin-Ashi GetStudyNameFromChart=Time Range Highlight GetStudyNameUsingID=Time Range Highlight GetStudyInternalIdentifier=Time Range Highlight i=2 GetStudyName=Time Range Highlight GetStudyNameFromChart=Time Range Highlight GetStudyNameUsingID=Time Range Highlight GetStudyInternalIdentifier=Time Range Highlight i=3 GetStudyName=Time Range Highlight GetStudyNameFromChart=HULL fast GetStudyNameUsingID=HULL fast GetStudyInternalIdentifier=HULL fast i=4 GetStudyName=HULL fast GetStudyNameFromChart=HULL slow GetStudyNameUsingID=HULL slow GetStudyInternalIdentifier=HULL slow i=5 GetStudyName=HULL slow GetStudyNameFromChart=SIG 1 GetStudyNameUsingID=SIG 1 GetStudyInternalIdentifier=SIG 1 i=6 GetStudyName=SIG 1 GetStudyNameFromChart=SIG 2 GetStudyNameUsingID=SIG 2 GetStudyInternalIdentifier=SIG 2 i=7 GetStudyName=SIG 2 GetStudyNameFromChart=ATR GetStudyNameUsingID=ATR GetStudyInternalIdentifier=ATR i=8 GetStudyName=ATR GetStudyNameFromChart= GetStudyNameUsingID= GetStudyInternalIdentifier= i=9 GetStudyName=SIG 2 TH LONG GetStudyNameFromChart=SIG 2 TH LONG GetStudyNameUsingID=SIG 2 TH LONG GetStudyInternalIdentifier=SIG 2 TH LONG i=10 GetStudyName=SIG 2 TH SHORT GetStudyNameFromChart=SIG 2 TH SHORT GetStudyNameUsingID=SIG 2 TH SHORT GetStudyInternalIdentifier=SIG 2 TH SHORT i=11 GetStudyName=Test GetStudyName GetStudyNameFromChart=MESH24_FUT_CME [CBV][M] 1000 Volume #1 Heikin-Ashi GetStudyNameUsingID=MESH24_FUT_CME [CBV][M] 1000 Volume #1 Heikin-Ashi GetStudyInternalIdentifier=MESH24_FUT_CME [CBV][M] 1000 Volume #1 Heikin-Ashi i=12 GetStudyName= GetStudyNameFromChart=Test GetStudyName GetStudyNameUsingID=Test GetStudyName GetStudyInternalIdentifier=Test GetStudyName SCSFExport scsf_TestGetStudyName(SCStudyInterfaceRef sc) { SCString MesTxt; if (sc.SetDefaults) { // Set the configuration and defaults sc.GraphName = "Test GetStudyName"; sc.StudyDescription = "Testing functions to retrieve study names. " "sc.GetStudyName(), sc.GetStudyNameFromChart(), sc.GetStudyNameUsingID() " "sc.GetStudyInternalIdentifier(), looking for one function to return " "the original name of a study, not the short name."; } if (sc.IsFullRecalculation && sc.Index == 0) { for (int i=0; i<20; i++) { MesTxt.Format("i=%i - ", i); MesTxt.Append("GetStudyName="); MesTxt.Append(sc.GetStudyName(i)); MesTxt.Append(" - GetStudyNameFromChart="); MesTxt.Append(sc.GetStudyNameFromChart(sc.ChartNumber, i)); MesTxt.Append(" - GetStudyNameUsingID="); MesTxt.Append(sc.GetStudyNameUsingID(i)); MesTxt.Append(" - GetStudyInternalIdentifier="); SCString StrTmp; sc.GetStudyInternalIdentifier(sc.ChartNumber, i, StrTmp); MesTxt.Append(StrTmp); sc.AddMessageToLog(MesTxt, 0); } } } |
SierraChart_64_fUoI1YIDVI.png / V - Attached On 2024-01-29 14:20:32 UTC - Size: 45.38 KB - 67 views |