KeltnerChannel Implementation

A guy has asked me how to implement Keltner Channels on Pathfinder.
PathScript Language already have the needed methods to calculate this indicator
the methods are:
KeltnerChannelTop(period, ma_type, multiplier)  (abbreviation  KCT)
KeltnerChannelMedian(period, ma_type, multiplier)  (abbreviation  KCM)
KeltnerChannelBottom(period, ma_type, multiplier)  (abbreviation  KCB)
A ready to use indicator is attached for download. KeltnerChannel
Important Disclaimer: The code or software herein [...]

 

autotrade
Posted In: Trade, Design, Automate.
Posted By: Salvatore Rossitto
Filed under: Automated Trading
Tags: , ,

VWAP Implementation

Implement a Volume Wieghted Average Price is not a difficult thing on pathfinder,
 

take a look to the formula:

as you know any variable on pathfinder become a vector so it keep trace of previous values, this is the key that make simple this kind of implementations with pathscript, the above formula can be [...]

 

autotrade
Posted In: Trade, Design, Automate.
Posted By: Salvatore Rossitto
Filed under: Automated Trading
Tags: , ,

A World of Candlesticks

One of the most usefull things on PathFinder Trader is the candlestick paterns recognition system on wich we can base an indicator or a trading strategy.
The candlestick recognition function is CANDLESTICKPATTERN() also written as CSP(), it returns a value corrensponding to the found pattern or 0 (zero) if no patterns [...]

 

autotrade
Posted In: Trade, Design, Automate.
Posted By: Salvatore Rossitto
Filed under: Automated Trading
Tags: , , ,

How to exit trade after X Pips from entry

This script show how to exit a trade after x pips from entry.
The entry conditions, in this example, are based on sma cross.
 
The Script  code for download: PipsCount Exit
Important Disclaimer: The code or software herein contained or attached, including but not limited to Custom indicators, PathScript, Expert Advisors, EAs, [...]

 

autotrade
Posted In: Trade, Design, Automate.
Posted By: Salvatore Rossitto
Filed under: Automated Trading
Tags: , , ,

How to exit trade after X Bars from entry

A PathFinder Trader user has asked how to close a position after X bars from entry.
For example, let’s program a buy condition based on a simple sma cross like this: CROSSOVER(SMA(CLOSE, 5), SMA(CLOSE, 14))
and a specular sell condition like this: CROSSOVER(SMA(CLOSE, 14), [...]

 

autotrade
Posted In: Trade, Design, Automate.
Posted By: Salvatore Rossitto
Filed under: Automated Trading
Tags: , , ,

Welcome to the Pathfinder Trader Autotrade blog

Welcome to the headquarters of automated trading on PathFinder Trader™
This blog, in uninion with the fastbrokers forums, aims to become a starting point and reference for anyone approaching automated trading on Pathfinder.
The development team of the newly created fastbrokers platform will publish contents in this blog.
The development of the PathFinder Trader™  script engine [...]

 

autotrade
Posted In: Trade, Design, Automate.
Posted By: Salvatore Rossitto
Filed under: Automated Trading
 
support