Search Engine
Here you can search through the pages of this Namespace, their attachments and the files uploaded to the system.
Note: the results will only display the items you have permissions to read.
This search, performed through 3.85 MB (775 documents, 11907 words), completed in 0.0 seconds and yielded 6 results.
[...] WealthScript
{
Side SingleDivergence( int bar, int period, int momperiod,
DataSeries ps, DataSeries ms, out bool trendup, out bool trenddn, out int p, out int m )
{
trendup = (ps bar > 0 && ms bar > 0);
trenddn = [...]
[...] PayableDates , and DividendType . These are available in two forms: In a popup when mousing over an [ms] dividend item on a stock chart In WealthScript Strategoes via the GetDetail or FormatValue methods: Make sure you've collected the fundamental data before running this Strategy (Data Manager > "Update Data" tab > check " Morningstar dividends " > go to "DataSets" tab > click "Update DataSet"). using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using WealthLab;
using WealthLab.Indicators; namespace WealthLab.Strategies
{
public [...]
[...] period = paramPeriod.ValueInt;
RoofingFilter rf = RoofingFilter.Series(Close);
MESAStochastic ms = MESAStochastic.Series(Close,period);
for(int bar = period; bar HideVolume();
ChartPane pMS = CreatePane(40,false,true);
ChartPane pRF = CreatePane(20,true,true);
PlotSeries(PricePane,SuperSmoother.Series(Close),Color.Red,LineStyle.Solid,1);
PlotSeries(pRF,rf,Color.FromArgb(255,0,0,139),LineStyle.Solid,1);
PlotSeries(pMS,ms,Color.FromArgb(255,255,0,128),LineStyle.Solid,2);
DrawHorzLine(pMS,0.8,Color.Red,LineStyle.Dashed,1);
DrawHorzLine(pMS,0.2,Color.DarkGreen,LineStyle.Dashed,1);
}
}
}
[...]
[...] real-time data For static and streaming quotes, can query different databases The provider is optimized for MS SQL Server (uses asynchronous methods) If other database installs its .NET driver in the system, the provider can autodetect and support it - for example: SQLite, Firebird, MySQL etc. Every data request is live, the data only exists in your database (and can't be edited in WL) Supports Market Manager
Creating a new DataSet
To work with a database containing some data, you need to create a new static DataSet first. Pick the appropriate Provider from the list of [...]
[...] a related note, Skype's Click To Call function is known to interfere with clipboard at least with MS Office programs, so be sure to check this [...]
[...] it
This data provider supports real-time streaming quotes from DDE-compliant applications such as MS Excel and OpenOffice Calc. DDE is just a source [...]