|
DLL's for
Allows variable Point &
Figures
(Box size and Reversal size can be dynamically defined in Easy Language).
Box size, Reversal, raw values are user customizable. You may
use it with any indicator and display a RSI as Point & Figures,
for example.
Various displays possible ( indicator example included below).
EXAMPLES:

3x1 Pt& Fig. display on a regular 10min S&P bar chart.
Appears in subgraph2
Printed using TradeStation 4 by TradeStation Technologies
Click on the above thumbnail image to get the full
size picture.

Printed using TradeStation 4 by TradeStation Technologies
Click on the above thumbnail image to get the full
size picture.
3x1 Pt& Fig display on a regular 10min S&P bar chart.
Overlaid (dark blue) on the 10 min SP bar chart (yellow).
Return to top

Printed using TradeStation 4 by TradeStation Technologies
Click on the above thumbnail image to get the full
size picture.
3x1 Pt& Fig display on a 100 ticks S&P bar chart.
Overlaid (dark green) on the SP bar chart (yellow).

Printed using TradeStation 4 by TradeStation Technologies
Click on the above thumbnail image to get the full
size picture.
3x1 Pt & Fig. display below a regular 100ticks S&P bar
chart.
Pt & Fig. Box count is also displayed in the bottom subgraph.

Printed using TradeStation 4 by TradeStation Technologies
Click on the above thumbnail image to get the full
size picture.
2x1 Pt& Fig. display on a regular 10min S&P bar chart.
Appears in a subgraph2.
Variable box Pt& Fig. display on a regular 10min
S&P bar chart.
Appears in a subgraph3.
BOX size is given here by the formula ceiling(adx(10)[1]/10).
You may type anything making sense to define a variable
box size.
Same kind of calculation can be done on the reversal size (voaltility,
trend index, anything you want).
Variable Point & Figure can be used in systems as
well as in indicators.
You may even devise variable Point and Figure applied to indicators!!!
Return to top

Printed using TradeStation 4 by TradeStation Technologies
Click on the above thumbnail image to get the full
size picture.
Pt& Fig DLL applied to a RSI oscillator.
Pt& Fig close value is overlaid (blue) on
the RSI oscillator (red).
Historical values of the Pt &Fig RSI bars have been added to the right (cyan bars)
TRADESTATION CODE
inputs:
box(5),{Box size}rev(3);{Reversal}
vars:reverse(0),boite(0);
{These variables can be different of a constant values
(allow variable, adaptive point &figures, where box size
and reversal may vary with
anything you want}
{Storage Arrays}
arrays: haut[101](0),bas[101](0),dernier[101](0),
nb_box[101](0),nb_uticks[101](0),nb_dticks[101](0);
{DLL definition}
definedllfunc:"ts_pfigd.dll",int,"modele",
long,long,long,long,
lpfloat,lpfloat,lpfloat,lpfloat,
lpfloat,word,word,lpfloat,word,word,lpfloat,word,word,
lpfloat,word,word,lpfloat,word,word,lpfloat,word,word;
Return to top
{You only have to call this function as below (copy and paste)
to store the Point&
Figures values into TradeStation Arrays}
if barnumber>=10 then begin
modele(barnumber,upticks,downticks,reverse,
&boite,&value11,&value12,&value13,
&haut[1],ArrayStartAddr(haut),ArraySize(haut),
&bas[1],ArrayStartAddr(bas),ArraySize(bas),
&dernier[1],ArrayStartAddr(dernier),ArraySize(dernier),
&nb_box[1],ArrayStartAddr(nb_box),ArraySize(nb_box),
&nb_uticks[1],ArrayStartAddr(nb_uticks),ArraySize(nb_uticks),
&nb_dticks[1],ArrayStartAddr(nb_dticks),ArraySize(nb_dticks) );
plot1(haut[100],"H_P&Fig");
plot2(bas[100],"L_P&Fig");
plot3(dernier[100],"C_P&Fig");
end;
Return to top
Ordering: see the ORDER section on this web
PRICE is US $200 .
SEE OUR SPECIAL PRICE OFFER FOR ALL OUR
TRADESTATION DLL's.
EC users must ad 19.6%VAT or provide their international VAT
number when ordering.
Please provide your name , address, TradeStation or Supercharts Realtime
Block Number.
TradeStation Code ©1996-1998 Philippe Lembo- HLG Gestion &
Pierre Orphelin-Sirtrade International .
Sirtrade International 110, avenue du President Wilson -F93100 Montreuil. FRANCE.
|

 |
Usage
|
 |
Builds Point & Figures from standard bars charts (High, Low, Close, Upticks ,
Downticks are taken in account and stored into TradeStation Arrays).
Returns: High, Low, Close, upticks, downticks, number of boxes (signed) for each Point
& Figure bar.
Stores up to 100 Point & Figures bars in TradeStation Arrays, ready to use in any
system or indicator running on classical bars (minute bars and ticks bars).
|
 |
 |
I
|