- ago
First off, WL8 is A LOT more responsive and overall faster than WL7!

Where are the community indicators located?
0
779
Solved
11 Replies

Reply

Bookmark

Sort
Glitch8
 ( 11.81% )
- ago
#1
We’re going to put them in the WL8 Extensions Demo project on Github. That’s where they logically belong.
0
- ago
#2
So these 4 that were in WL7 we have to make our own extension from github to use them with WL8?
0
Glitch8
 ( 11.81% )
- ago
#3
We will provide a downloadable dll and link to it from the github page, so you won’t need to build the library yourself.

I should have it ready in a little while.
0
Glitch8
 ( 11.81% )
- ago
#4
The DLL for the WL8ExtensionsDemo library, which is the new home of the "Swing" indicators, is now here:

https://github.com/LucidDion/WL8ExtensionDemos/

Note: the indicators will appear in a folder called WL8ExtensionsDemo, NOT Community.
1
Best Answer
- ago
#5
In the GitHub site its says the following;

"An open-source class library for Wealth-Lab 8, containing Indicators, and an example custom extension with child window. You can download the DLL for this library and save it into your WL8 installation folder from this link:" I cant find such folder and don't know what to do with the dll
0
- ago
#6
After you download it then put the dll file in your folder programfiles/quantacula/wealthlab8

Then restart wealthlab
0
Glitch8
 ( 11.81% )
- ago
#7
Another handy way of opening the installation folder is right clicking the WL8 desktop icon and selecting “Open Containing Folder.”
0
- ago
#8
Thanks it now in the right place put an error is created
CODE:
using WealthLab.Backtest; using System; using WealthLab.Core; using WL8ExtensionDemos; using WealthLab.Indicators; using System.Collections.Generic; namespace WealthScript2 { public class MyStrategy : UserStrategyBase { //create indicators and other objects here, this is executed prior to the main trading loop public override void Initialize(BarHistory bars) {          PlotIndicator(new HiLoLimit(bars,14,2.00,2.00), WLColor.FromArgb(255,0,0,255), PlotStyle.Line); } //execute the strategy rules here, this is executed once for each bar in the backtest history public override void Execute(BarHistory bars, int idx) { if (!HasOpenPosition(bars, PositionType.Long)) { //code your buy conditions here } else { //code your sell conditions here } } //declare private variables below } }

Compiled at 4/18/2022 08:16:31
15: The type or namespace name 'HiLoLimit' could not be found (are you missing a using directive or an assembly reference?)
0
- ago
#9
The compiler is suggesting where the error is:
QUOTE:
(are you missing a using directive or an assembly reference?)

If you download the source code and open Indicators/HiLoLimit.cs then it's clear that the namespace is WealthLab.Community and your script does not contain a using directive for that.
1
Glitch8
 ( 11.81% )
- ago
#10
Eugene, can we add a sample Strategy to that Github page to avoid other users getting caught with this?
0
- ago
#11
Done with that. Also I uploaded the binary to Github's Releases section:

https://github.com/LucidDion/WL8ExtensionDemos/releases
1

Reply

Bookmark

Sort