Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.
insideday
Members-
Content Count
30 -
Joined
-
Last visited
Personal Information
-
First Name
day
-
Last Name
inside
-
City
new york
-
Country
United States
-
Gender
Male
Trading Information
-
Vendor
No
-
insideday started following Drummond Geometry, Sam Seiden-Understanding The Exact Process Behind The Movement In Price, Making My Own Tape Tweet and and 7 others
-
Thanks for the clarification. With the equality sign at CloseOfData <= LastC_Cache we have a slight bias to the bid side. Did you compared the results with the original Marketdelta program?
-
@swisstrader On markets like the FDAX there are a lot of trades TS reports between insidebid and insideask. How does your code handle this? Do you look if the trade before was on bis/ask or do you ignore these?
-
Sam Seiden-Understanding The Exact Process Behind The Movement In Price
insideday replied to VTK's topic in Trading Videos
Marplex has posted a nice indicator and video for S/R zones. Program 16 | Potential Horizontal and Vertical Turning Lines It counts how often a zigzag extreme occurred at the same levels and then plots the highest values. -
This is Version 2.5, Rev3-2 20090125190155WH_ZigZagFib-v2.5_20080302_IndicatorLastRevisedByStratMan_20090125_730pm_Rev3-2.eld
-
cunparis, i only watched it the last minutes on ES, but couldnt it be easy something like this on a 1 minute chart input : ESsize (20); if high >= highest (high,3) and tradesize at ask>=ESsize then beep/alert if low<= lowest(low,3) and tradesize at bid>=ESsize then beep/alert ? i am sure that htey dont use a complicated tick/volume chart.
-
Chart 3 @ indicators4trading.bravehost.com - A Bravenet.com Hosted Site
-
How Do I Get an Angle from an EMA? Multicharts Software
insideday replied to Szymon's topic in Coding Forum
Szymon, this gives you the angle Input: Price(Close), NumBars(1), MA_length(20); variable: MA(0), slope(0); MA = average(price, MA_length); slope = arctangent((MA - MA[NumBars])/NumBars); plot1(slope, "slope"); plot2(0,"Zero"); If you need the the degrees instead of the radians change slope = arctangent((MA - MA[NumBars])/NumBars); to slope = arctangent((MA - MA[NumBars])/NumBars)*180/3.141592654; -
Hi Tams, if a specific condition is met, i want to delete the rectangle. Does somebody has an easy solutiion where to put in the 4 tl_delete. Into the function before if value1 = 0 then or into the main code?
-
CME Changes to the Transaction Reporting Process
insideday replied to bakrob99's topic in Market Internals
They changed the behavior for the Currency futures some weeks ago. I wondered some weeks ago why the T/S shows 1 lot trades on over 97 % compared to the days before. -
This is the function i programmed for one code, maybe it fits your needs. 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;
-
Primer on the Formulation of an Index of Weighted Biases
insideday replied to UrmaBlume's topic in Technical Analysis
@Urma What is the highest timeframe for that calculation of the GV? -
Thanks. I begin to program some of the “R-Vals” described in the pdf on the bottom of the page DG2 New Concepts Software – Drummond Geometry Do you have some experience which are worth to put some effort in ?
-
Does somebody use the 5.. and 6... lines described in their lesson 2 in his actual trading or are these ideas out of date especially for intraday trading?
-
I know. If i read goose posting correct, TS 9 will changed completely, offering a TS "Strategy Network" and marketplace which allows developers to upload their codes to a network like collective2. https://www.tradestation.com/Discussions/Topic.aspx?Topic_ID=90402&PAGE=3
-
I have no problems importing ELDs which i exported with TS 8.6 2525.