Найти Посты: #Set

Дмитрий Храмцов
 thinkorswim
Здравствуйте.Подскажите пожалуйста -как поставить RSI и Mov Avg вместе в нижнее окно графика? Я добавляю ,но они открываются в разных окнах-получается три горизонтальных окна на одном графике,неужели в ТОСе это невозможно?

Проголосовало: 0

Евгений Елманов
Evgeniy21  
 Реал трейды nyse
26,07 Задолбали разводы

Проголосовало: 0

Вадим
Доброе время суток всем. Я нашол формулу для TOSа, только она выдаёт сигналы на 2, 3 свечи позднее чем надо. Может кто то сможет формулу переработать, чтобы сигналы выдавала в реальном времени. Заранее всем спасибо! Формула: def triggerSell = if(if(close[-1] < close,1,0) and (close[-2] < close[-1] or close[-3] <close[-1]),1,0); def triggerBuy = if(if(close[-1] > close,1,0) and (close[-2] > close[-1] or close[-3] > close[-1]),1,0); rec buySellSwitch = if(triggerSell, 1, if(triggerBuy, 0, buySellSwitch[1])); def thirdBarClosed = if(isNan(close[-3]),0,1); plot SBS = if(triggerSell and thirdBarClosed and !buySellSwitch[1], high, if(triggerBuy and thirdBarClosed and buySellSwitch[1], low, double.nan)); SBS.setStyle(curve.POINTS); SBS.setPaintingStrategy(paintingStrategy.LINE_VS_SQUARES); SBS.setLineWeight(2); SBS.setDefaultColor(color.white);

Проголосовало: 0

Andrey
 thinkorswim
Ребята как настроить сканер что б он показывал премаркет?

Проголосовало: 0

Алексей
Altks  
Доброго всем дня. Помогите настроить "Data View Settings" окна "Level II" в платформе Arche , точнее каких (мм) вписать в нижнее поле. Заранее спасибо.

Проголосовало: 0

Forex Promoter
<!--nofilter--><p style="text-align: center;"> <span style="font-size:18px;"><strong><span style="color: rgb(0, 0, 255);">Вебинары от smb Capital</span></strong></span></p> <p style="text-align: center;"> <span style="font-size:16px;"><em><span style="color: rgb(0, 0, 255);">ведущий Leo Selya</span></em></span></p> <p style="text-align: center;"> &nbsp;</p> <p style="text-align: center;"> <span style="font-size:16px;"><strong><span style="color: rgb(51, 51, 51); font-family: arial, sans-serif; line-height: 17px;">Как готовятся к рабочему дню в smb</span></strong></span></p> <p style="text-align: center;"> &nbsp;</p> <p style="text-align: center;"> <iframe allowfullscreen="" frameborder="0" height="360" src="http://www.youtube.com/embed/3Zy78CjML34?feature=player_detailpage" width="640"></iframe></p> <p style="text-align: center;"> &nbsp;</p> <p style="text-align: center;"> &nbsp;</p> <p style="text-align: center;"> <strong><span style="font-size:16px;">Основы чтения ленты</span></strong></p> <p style="text-align: center;"> &nbsp;</p> <p style="text-align: center;"> &nbsp;<iframe allowfullscreen="" frameborder="0" height="360" src="http://www.youtube.com/embed/dN5ntNBUqJw?feature=player_detailpage" width="640"></iframe></p> <p style="text-align: center;"> &nbsp;</p> <p style="text-align: center;"> <span style="font-size:16px;"><strong>Вебинар по setups</strong></span></p> <p style="text-align: center;"> &nbsp;</p> <p style="text-align: center;"> <iframe allowfullscreen="" frameborder="0" height="360" src="http://www.youtube.com/embed/dN5ntNBUqJw?feature=player_detailpage" width="640"></iframe></p> <p style="text-align: center;"> &nbsp;</p> <p style="text-align: center;"> Если Вам нравится подход smb Capital и вы хотите подробнее узнать о их методиках, то рекомендуем <strong>записаться на обучающую программу для рускоязычных трейдеров.</strong></p> <p style="text-align: center;"> <strong>Длительность:</strong> 3 месяца.</p> <p style="text-align: center;"> <strong>Цена </strong>: 1500 дол.</p> <p style="text-align: center;"> <strong>На время обучения дается доступ к : smb Scanner, smb Radar, smb real time chat, smb morning meetings.</strong></p> <p style="text-align: center;"> Детали по ссылке:&nbsp;<a href="http://www.smbtraining.com/overview/trading-mentor-russian">http://www.smbtraining.com/overview/trading-mentor-russian</a></p> <p style="text-align: center;"> &nbsp;</p> <p style="text-align: center;"> &nbsp;</p>

Проголосовало: 0

 thinkorswim
Подскажите как переписать индикатор МТ4 Super-signals_v2.mq4 для thinkorswim? indicator_chart_window indicator_buffers 4 indicator_color1 Yellow indicator_color2 Lime indicator_color3 Red indicator_color4 Aqua indicator_width1 1 indicator_width2 1 indicator_width3 1 indicator_width4 1 //input properties extern int dist2 = 21; extern int dist1 = 14; extern bool alertsOn = true; extern bool alertsOnCurrent = true; extern bool alertsMessage = true; extern bool alertsSound = true; extern bool alertsEmail = false; double b1[]; double b2[]; double b3[]; double b4[]; int init() { SetIndexBuffer(0,b1); SetIndexBuffer(1,b2); SetIndexBuffer(2,b3); SetIndexBuffer(3,b4); SetIndexStyle(0,DRAW_ARROW); SetIndexArrow(0,334); SetIndexStyle(1,DRAW_ARROW); SetIndexArrow(1,333); SetIndexStyle(2,DRAW_ARROW); SetIndexArrow(1,233); SetIndexStyle(3,DRAW_ARROW); SetIndexArrow(0,234); return(0); } int start() { int counted_bars=IndicatorCounted(); int i,limit,hhb,llb,hhb1,llb1; if(counted_bars<0) return(-1); if(counted_bars>0) counted_bars--; limit=Bars-counted_bars; limit=MathMax(limit,dist1); limit=MathMax(limit,dist2); // // // // // for (i=limit;i>=0;i--) { hhb1 = Highest(NULL,0,MODE_HIGH,dist1,i-dist1/2); llb1 = Lowest(NULL,0,MODE_LOW,dist1,i-dist1/2); hhb = Highest(NULL,0,MODE_HIGH,dist2,i-dist2/2); llb = Lowest(NULL,0,MODE_LOW,dist2,i-dist2/2); b1[i] = EMPTY_VALUE; b2[i] = EMPTY_VALUE; b3[i] = EMPTY_VALUE; b4[i] = EMPTY_VALUE; double tr = iATR(NULL,0,50,i); if (i==hhb) b1[i]=High[hhb] +tr; if (i==llb) b2[i]=Low[llb] -tr; if (i==hhb1) b3[i]=High[hhb1]+tr/2; if (i==llb1) b4[i]=Low[llb1] -tr/2; } // // // // // if (alertsOn) { int forBar = 1; if (alertsOnCurrent) forBar = 0; if (b1[forBar] != EMPTY_VALUE && b3[forBar] != EMPTY_VALUE) doAlert("strong sell";); if (b1[forBar] != EMPTY_VALUE && b3[forBar] == EMPTY_VALUE) doAlert("sell";); if (b1[forBar] == EMPTY_VALUE && b3[forBar] != EMPTY_VALUE) doAlert("minor sell or exit buy";); if (b2[forBar] != EMPTY_VALUE && b4[forBar] != EMPTY_VALUE) doAlert("strong buy";); if (b2[forBar] != EMPTY_VALUE && b4[forBar] == EMPTY_VALUE) doAlert("buy";); if (b2[forBar] == EMPTY_VALUE && b4[forBar] != EMPTY_VALUE) doAlert("minor buy or exit sell";); } return(0); } // // // // // void doAlert(string doWhat) { static string previousAlert="nothing"; static datetime previousTime; string message; string TimePeriod; if (Period()== 1) TimePeriod = "1 MIN"; if (Period()== 5) TimePeriod = "5 MIN"; if (Period()== 15) TimePeriod = "15 MIN"; if (Period()== 30) TimePeriod = "30 MIN"; if (Period()== 60) TimePeriod = "1 HR"; if (Period()== 240) TimePeriod = "4 HR"; if (Period()== 1440) TimePeriod = "DAILY"; if (Period()== 10080) TimePeriod = "WEEKLY"; if (Period()== 43200) TimePeriod = "MONTHLY"; if (previousAlert != doWhat || previousTime != Time[0]) { previousAlert = doWhat; previousTime = Time[0]; // // // // // message = StringConcatenate(Symbol()," at ", TimePeriod, " Super signal : ",doWhat); if (alertsMessage) Alert(message); if (alertsEmail) SendMail(StringConcatenate(Symbol(),"Super signal ";),message); if (alertsSound) PlaySound("alert2.wav";); } }

Проголосовало: 0

Александр
 thinkorswim
Переделал предыдущую фичу с корреляциями. Теперь все сектора под графиком в виде индюка) Все что стремится к 100% - имеет высокую степень корреляции с рынком. Все что стремится к 0% имеет высокую степень раскорреляции с рынком :)
Переделал предыдущую фичу

Проголосовало: 0

Александр Колосов
uhbender  
 thinkorswim
Коллеги,подскажите как под графиком в тос поставить объёмы? Что бы были в отдельном окне. Как на картинке.Спасибо.
Коллеги,подскажите как под

Проголосовало: 0

Ара
Rally base drop, drop base drop, resistance, Fibonacci, Elliot Wave, and on and on…all attempts to figure out where price will turn in a market. For today’s piece, I thought I would literally take a page right out of our Professional Trader course to help share the picture that represents real supply or demand in a market. We will also look at a recent trade example from one of our live trading rooms, the Extended Learning Track (XLT). For today’s lesson, let’s focus on the supply side as that is what we focused on in a recent XLT session. Notice the pattern, Rally – Base – Drop. This is the picture of supply that helps you be a willing seller high up on the supply and demand curve. While some may look at the Drop – Base – Drop as a supply level, keep in mind it is found in the middle of moves, unlike the Rally – Base – Drop that is found farther out at the extremes. With any picture of supply, you need to make sure it is very “fresh” meaning there are still significant unfilled sell orders in that area (price level). The entry once the picture above is produced is to short a rally back up to that supply level. The “drop” from the level tells us supply exceeds demand in that area. We sell short at the proximal line with a protective buy stop just above the distal line and that’s the sell setup. Again, keep in mind that a section that comes later in the course deals with the ever important “Odds Enhancers” which are the filter that helps us identify the best levels with the strongest supply and demand imbalances so make sure you understand those before trying this at home. I have also written about them in prior articles. The yellow shaded box represents supply in the QQQ. Notice the pattern prior to the yellow box, the yellow box itself, and after: Rally – Base – Drop. Once price rallied back up to that level, the shorting opportunity is at hand if you wish to take the trade. These are typical of our early morning income trades. This is not about taking many trades in a session, it’s about taking the high probability ones that meet our criteria. There is nothing fancy about this, no indicators or oscillators or conventional chart patterns, there are not many different strategies, there is simply one. Buy where institutions are buying and sell where they are selling. Another way to say that is, buy where the smart money is buying and sell where the smart money is selling. The purpose of this article was to help you identify what the picture of that looks like on a chart. Of course, the Odds Enhancers help this process immensely and are key to identifying the key levels.

Проголосовало: 0

Фильтр

Что искать
Тип постов
По людям В группе Дата
Наш канал