Hi, I just subscribed to Norgate and everything works as expected. However, I wanted to try to create sector specific watchlists in WL and cannot find a way to do so. I know that the Norgate data does have GICS codes but it seems they are not available in WL. Has anyone tried this? Any advice? I have reached out to Norgate to see what they have to say.
Thanks!
Thanks!
Rename
They'll likely just point you to the WealthLab integration section on their site, where you'll find the answer!
https://norgatedata.com/wealth-lab-usage.php
https://norgatedata.com/wealth-lab-usage.php
yes, i already looked there and there was no answer to my specific q. I will do some more research.
This worked for me, based on the info there -
CODE:
using WealthLab.Backtest; using WealthLab.Core; using System.Collections.Generic; using WealthLab.Norgate; namespace WealthScript2 { public class MyStrategy : UserStrategyBase { public override void Initialize(BarHistory bars) { var cls = Metadata.Classification(bars.Symbol, "GICS"); WriteToDebugLog($"{bars.Symbol} GICS:{cls}"); var indexsymbol = Metadata.CorrespondingIndustryIndex(bars.Symbol, "$SP1500", 4, "PR"); WriteToDebugLog($"{bars.Symbol} IndexSymbol: {indexsymbol}"); } //execute the strategy rules here, this is executed once for each bar in the backtest history public override void Execute(BarHistory bars, int idx) { } } }
Thanks Cone, just saw your post! Yes, I went back to the norgate usage page and then was able to write some code that retrieves all 4 levels of the GICS code for a symbol.
Your Response
Post
Edit Post
Login is required