<?xml version="1.0" encoding="UTF-8"?>
<feed xml:lang="en-US" xmlns="http://www.w3.org/2005/Atom">
	<title>Сообщения от oleg0406 - HAMAHA  Биткоин форум. Торговля на бирже</title>
	<id>tag:hamaha.net,07538eabd758ccf6b75742d64af6b619</id>
	<link href="/rss/username:oleg0406" rel="self" />
	<link href="https://hamaha.net/oleg0406" rel="alternate" type="text/html" />
	<subtitle>Сообщения от oleg0406 - HAMAHA  Биткоин форум. Торговля на бирже</subtitle>
	<updated>2014-12-23T11:00:21+03:00</updated>
	<entry>
		<title>oleg0406: Установил thinkorswim на iMac все встало</title>
		<id>tag:hamaha.net,2014-12-23T11:00:21+03:00,582f55c8ce20817e8916ca92024fe50a</id>
		<link rel="alternate" type="text/html" href="https://hamaha.net/view/post:552373/oleg0406-.html" />
		<content type="html"> oleg0406:Установил thinkorswim на iMac все встало но проблема после ввода логина и пароля он начинает логинится и виснет...ощущение такое что-то не дает сделать соединение....В чем причина подскажите кто сталкивался с iMac</content>
		<published>2014-12-23T11:00:21+03:00</published>
		<updated>2014-12-23T11:00:21+03:00</updated>
	</entry>
	<entry>
		<title></title>
		<id>tag:hamaha.net,2013-06-05T04:58:06+04:00,52db70ec771935bb16a3bae9692b1866</id>
		<link rel="alternate" type="text/html" href="https://hamaha.net/view/post:363893/oleg0406-.html" />
		<content type="html"> oleg0406:Когда будешь в скайп есть вопросик по ТОС......Олег</content>
		<published>2013-06-05T04:58:06+04:00</published>
		<updated>2013-06-05T04:58:06+04:00</updated>
	</entry>
	<entry>
		<title>oleg0406: Добавил....</title>
		<id>tag:hamaha.net,2013-05-19T09:55:51+04:00,2140616e026be626be9df4d890f98493</id>
		<link rel="alternate" type="text/html" href="https://hamaha.net/view/post:356417/oleg0406-Добавил.html" />
		<content type="html"> oleg0406:Добавил....Super Signal v3d.mq4</content>
		<published>2013-05-19T09:55:51+04:00</published>
		<updated>2013-05-19T09:55:51+04:00</updated>
	</entry>
	<entry>
		<title></title>
		<id>tag:hamaha.net,2013-05-19T05:34:51+04:00,f58dd8354f02ab26638a78ffd872bab5</id>
		<link rel="alternate" type="text/html" href="https://hamaha.net/view/post:356402/oleg0406-Подскажите_как_переписать_индикатор_М.html" />
		<content type="html"> oleg0406:Подскажите как переписать индикатор МТ4 Super-signals_v2.mq4 для thinkorswim? #property indicator_chart_window #property indicator_buffers 4 #property indicator_color1 Yellow #property indicator_color2 Lime #property indicator_color3 Red #property indicator_color4 Aqua #property indicator_width1 1 #property indicator_width2 1 #property indicator_width3 1 #property 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&amp;lt;0) return(-1); if(counted_bars&amp;gt;0) counted_bars--; limit=Bars-counted_bars; limit=MathMalimit,dist1); limit=MathMalimit,dist2); // // // // // for (i=limit;i&amp;gt;=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 &amp;amp;&amp;amp; b3[forBar] != EMPTY_VALUE) doAlert(&amp;quot;strong sell&amp;quot; if (b1[forBar] != EMPTY_VALUE &amp;amp;&amp;amp; b3[forBar] == EMPTY_VALUE) doAlert(&amp;quot;sell&amp;quot; if (b1[forBar] == EMPTY_VALUE &amp;amp;&amp;amp; b3[forBar] != EMPTY_VALUE) doAlert(&amp;quot;minor sell or exit buy&amp;quot; if (b2[forBar] != EMPTY_VALUE &amp;amp;&amp;amp; b4[forBar] != EMPTY_VALUE) doAlert(&amp;quot;strong buy&amp;quot; if (b2[forBar] != EMPTY_VALUE &amp;amp;&amp;amp; b4[forBar] == EMPTY_VALUE) doAlert(&amp;quot;buy&amp;quot; if (b2[forBar] == EMPTY_VALUE &amp;amp;&amp;amp; b4[forBar] != EMPTY_VALUE) doAlert(&amp;quot;minor buy or exit sell&amp;quot; } return(0); } // // // // // void doAlert(string doWhat) { static string previousAlert=&amp;quot;nothing&amp;quot;; static datetime previousTime; string message; string TimePeriod; if (Period()== 1) TimePeriod = &amp;quot;1 MIN&amp;quot;; if (Period()== 5) TimePeriod = &amp;quot;5 MIN&amp;quot;; if (Period()== 15) TimePeriod = &amp;quot;15 MIN&amp;quot;; if (Period()== 30) TimePeriod = &amp;quot;30 MIN&amp;quot;; if (Period()== 60) TimePeriod = &amp;quot;1 HR&amp;quot;; if (Period()== 240) TimePeriod = &amp;quot;4 HR&amp;quot;; if (Period()== 1440) TimePeriod = &amp;quot;DAILY&amp;quot;; if (Period()== 10080) TimePeriod = &amp;quot;WEEKLY&amp;quot;; if (Period()== 43200) TimePeriod = &amp;quot;MONTHLY&amp;quot;; if (previousAlert != doWhat || previousTime != Time[0]) { previousAlert = doWhat; previousTime = Time[0]; // // // // // message = StringConcatenate(Symbol(),&amp;quot; at &amp;quot;, TimePeriod, &amp;quot; Super signal : &amp;quot;,doWhat); if (alertsMessage) Alert(message); if (alertsEmail) SendMail(StringConcatenate(Symbol(),&amp;quot;Super signal &amp;quot,message); if (alertsSound) PlaySound(&amp;quot;alert2.wav&amp;quot; } }</content>
		<published>2013-05-19T05:34:51+04:00</published>
		<updated>2013-05-19T05:34:51+04:00</updated>
	</entry>
</feed>

