| Technical Analysis The technical discussion forum for traders. |
![]() | | Tweet | |
| | #65 | ||
![]() | Apig CTA | ||
| |
|
| The Following User Says Thank You to apig For This Useful Post: | ||
pathfinder62 (08-05-2009) | ||
| | #66 | ||
![]() | Re: Drummond Geometry Quote:
| ||
| |
|
| | #67 | ||
![]() | Re: Drummond Geometry Quote:
| ||
| |
|
| | #68 | ||
![]() | Re: Drummond Geometry Can someone tell me if there is a programmable rectangle tool in Multicharts (Easy Language)? I want to place a square using esay language on my charts. All help will be much appreciated. Thanking in advance. Simon | ||
| |
|
| | #69 | ||
![]() | Re: Drummond Geometry Quote:
There is no rectangle or triangle or circle in the EasyLanguage arsenal. You can build triangles and rectangles with TL_NEW. p.s. there might be some functions out there to speed up the drawings... I will let you know if I come across one.
__________________ ..........This is a terribly difficult question to answer. The only satisfactory answer is: "It depends"... | ||
| |
|
| The Following User Says Thank You to Tams For This Useful Post: | ||
Szymon (09-08-2009) | ||
| | #70 | ||
![]() | Re: Drummond Geometry Code:
inputs: _Color (NumericSimple),
_DateStart (NumericSimple),
_TimeStart (NumericSimple),
_DateEnd (NumericSimple),
_TimeEnd (NumericSimple),
_PriceHi (NumericSimple),
_PriceLo (NumericSimple),
_Size (NumericSimple),
_Style (NumericSimple);
Vars: Top (0), Bottom(0), BarrierLeft(0), BarrierRight(0);
Bottom = tl_new_s(_DateStart, _TimeStart, _PriceLo,_DateEnd, _TimeEnd, _PriceLo);
tl_setcolor (Bottom,_Color);
TL_SetSize (Bottom, _Size);
TL_SetStyle(Bottom, _Style);
Top = tl_new_s(_DateStart, _TimeStart, _PriceHi,_DateEnd, _TimeEnd,_PriceHi);
tl_setcolor (Top ,_Color);
TL_SetSize (Top , _Size);
TL_SetStyle(Top , _Style);
BarrierLeft = tl_new_s(_DateStart, _TimeStart, _PriceLo, _DateStart, _TimeStart, _PriceHi);
tl_setcolor (BarrierLeft,_Color);
TL_SetSize (BarrierLeft, _Size);
TL_SetStyle(BarrierLeft, _Style);
BarrierRight = tl_new_s(_DateEnd, _TimeEnd, _PriceLo, _DateEnd, _TimeEnd, _PriceHi);
tl_setcolor (BarrierRight,_Color);
TL_SetSize (BarrierRight, _Size);
TL_SetStyle(BarrierRight, _Style);
DrawBox2MC=0; | ||
| |
|
| | #71 | ||
![]() | Re: Drummond Geometry Does someone have a screenshot of the latest 6EZ9 with the original Drummond near by support and resistance zones on it. I would like to compare this with my indicator that I built in Multicharts for that purpose. I have attached a screen shot my nearby indicators are in Pink. All help will be much appreciated. Thanks, Simon | ||
| |
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
| |
| ∧ Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Market Geometry is a lie? | traderxman | Technical Analysis | 28 | 08-22-2007 03:53 PM |