Algo Trading
Automated Trading Without Programming
Algo Trade with Simple English Instructions
Our proprietary trading language combines simple English with common trading terms, making it easy for you to algo trade without learning how to program.
Develop trading strategies with simple point and click rules. Then set orders to be executed on the next bar to start algo trading.
TradeSenseTM combines simple English with common trading terms for the easiest algo trading on the planet. Forget trying to learn a programming language such as Python or C#. With TradeSenseTM, you can develop an algo trading strategy simply by combining English with common trading terms.
Which One Would You Rather Use?
Rule: Closing Price Is Less than the 18 Day Moving Average
Trade NavigatorTM
TradeSenseTM
TradeStationTM
EasyLanguageTM
IF Price < AverageFC(Price, Length) Then
Begin
PlotPaintBar(High, Low, "P<MovAvg");
End
Else Begin
NoPlot(1);
NoPlot(2);
End;
eSignalTM
eSignal Formula ScriptTM
function preMain() {
setPriceStudy(true);
setStudyTitle("Compare1");
setCursorLabelName("Data", 0);
setDefaultBarStyle(PS_SOLID, 0);
setDefaultBarFgColor(Color.red, 0);
setDefaultBarThickness(1, 0);
setPlotType(PLOTTYPE_LINE, 0);
}
function main() {
if (close() < vEMA10.getValue (MAStudy.MA)) {
onAction1();
}
}
function postMain() {
function onAction1() {
setPriceBarColor(Color.RGB(155,0,0));
}
}