help

Questions about MultiCharts and user contributed studies.
RedBerlin
Posts: 81
Joined: 05 Dec 2014

help

Postby RedBerlin » 21 Feb 2015

hi guy
after 3 months I ve not been able to set stop loss and profit target in my ts!!!
I use supertrend indicator , but automatically, I was able(tanks to Matriks) only to set
buy and sell!!!
I believed that my broker dosent permitt exit with stoploss and profit but maybe it is not true!!!
I saw from chart trading is possible set stop loss and profit ...for example if
go buy, at same moment entry 3 order= buy -stop-takeprofit!!!
my broker is Directa and if there is some italian trader that is able in programming please
give me a help!!!
otherwise I have A question for everything: if is possible manually from chart trading
set three orders at same moment, it will be as well possible set automatically with strategy????
grazie

User avatar
Henry MultiСharts
Posts: 9165
Joined: 25 Aug 2011
Has thanked: 1264 times
Been thanked: 2957 times

Re: help

Postby Henry MultiСharts » 23 Feb 2015

Hello RedBerlin,

Please specify the particular difficulty you have.

RedBerlin
Posts: 81
Joined: 05 Dec 2014

Re: help

Postby RedBerlin » 23 Feb 2015

Code: Select all

[LegacyColorValue = TRUE];

inputs:
ATRLength(2), ATRMult(2.4), UpColor(green), DnColor(red),TICKSAWAY(1);

vars:
ATR(0),
avg(0),
dn(0),
up(0),
trend(1),
flag(0),
flagh(0),
SuperTrend(0);




ATR = AvgTrueRange(ATRLength) * ATRMult;
avg = (high + low)/2;
up = avg + ATR;
dn = avg - ATR;

if close > up[1] then
trend = 1
else if close < dn[1] then
trend = -1;

if trend < 0 and trend[1] > 0 then flag=1 else flag=0;
if trend > 0 and trend[1] < 0 then flagh = 1 else flagh = 0;

if trend > 0 and dn < dn[1] then dn=dn[1];
if trend < 0 and up > up[1] then up=up[1];

if flag = 1 then up = avg + ATR;
if flagh = 1 then dn = avg - ATR;

if trend = 1 and trend [1] < 0 then buy next bar C+ 6*minmove/pricescale limit;

if trend = -1 and trend [1] >0 then Sellshort next bar C- 6*minmove/pricescale limit;
Hello RedBerlin,

Please specify the particular difficulty you have.
GRAZIE HENRY
I bought multicharts for automatically trading....but at this moment I have a car like a ferrari
but always parked in garage.
i M NOT ABLE TO PROGRAMMING strategy and I have not still understood if with my broker is possible trading automatically.
so please .....I think iD LIKE to know if payng too, I could with strategy set stoploss take profit and
trailing stop!!!!
I GUESS THAT MULYICHARTS decide with order send to broker,and trailing profit and stoploss are all
exit.....so..please I m tired,I want pay programmer but please you ask my broker DIRECTA WHAT i CAN DO WITH SOFTWARE!!!
GRAZIE

User avatar
Henry MultiСharts
Posts: 9165
Joined: 25 Aug 2011
Has thanked: 1264 times
Been thanked: 2957 times

Re: help

Postby Henry MultiСharts » 24 Feb 2015

RedBerlin,

Please contact your broker directly regarding supported order types.
If you are interested in a custom programming - please send us detailed specifications of what you want to have programmed for you to support@multicharts.com

User avatar
furytrader
Posts: 354
Joined: 30 Jul 2010
Location: Chicago, IL
Has thanked: 155 times
Been thanked: 217 times

Re: help

Postby furytrader » 25 Feb 2015

From a style standpoint, please do not use so many !!! exclamation points in your post. It's extremely annoying.

RedBerlin
Posts: 81
Joined: 05 Dec 2014

Re: help

Postby RedBerlin » 01 Mar 2015

RedBerlin,

Please contact your broker directly regarding supported order types.
If you are interested in a custom programming - please send us detailed specifications of what you want to have programmed for you to support@multicharts.com
hi Henry
I contcted support but they just send me prebuilt exit like stoploss ecc. ecc.
I would pay if is possible to set ts!
grazie


Return to “MultiCharts”