Welcome! Log In Create A New Profile

Get Earnings and Seasonal Trends - Subscribe Today!

Advanced

"E" success

Posted by mtut 
Re: "E" success
May 18, 2015 10:36AM
Only played AAPL today. Added Money Flow and ADX labels to my charts and looked for all three to agree



Re: "E" success
May 18, 2015 01:13PM
Entered NFLX long around 14:08

Sold out 14:37 up .50





Edited 1 time(s). Last edit at 05/18/2015 01:41PM by mtut.
Re: "E" success
May 19, 2015 08:33AM
Bought NFLX calls at open.

Out at 9:45







Edited 3 time(s). Last edit at 05/19/2015 08:50AM by mtut.
Re: "E" success
May 19, 2015 10:02AM
Just curious... are those real money trades? If they are, awesome job scalping!!!
Re: "E" success
May 19, 2015 11:56AM
djpl8,

Some trades are real and some are practice. I practice alot, but ALWAYS practice like I was trading real money. So the only difference is in practice I can never be filled between the bid and the ask.
Re: "E" success
May 19, 2015 12:13PM
Bought LNKD and AMZN puts around 13:00





Sold out LNKD bought AAPL calls 13:35



Edited 1 time(s). Last edit at 05/19/2015 12:39PM by mtut.
NMR
Re: "E" success
May 19, 2015 02:40PM
MTUT and team-
Could you help me and explain how I set up these charts like you all have it set up?
Re: "E" success
May 20, 2015 08:38AM
Sold out of AMZN, from yesterday, at 9:36



Still in AAPL and bought NFLX puts



Sold AAPL at 9:47 for a $750 loss





Edited 3 time(s). Last edit at 05/20/2015 08:49AM by mtut.
Re: "E" success
May 20, 2015 12:33PM
mtut Wrote:
-------------------------------------------------------
> Traded AAPL and LNKD this a.m. Exited BIDU trade
> from yesterday. BIDU never was positive.
>
> [i.imgur.com]
>
> 13:05 Bought BIDU calls
>
> [i.imgur.com]


Mtut,

What is the bottom window? The one labeled 'Darcy' with the green boxes, and e30, e20 etc.
Re: "E" success
May 20, 2015 01:04PM
That is my watchlist with custom columns. I watch for all 5 columns to be the same color (indicating an E on each) then I look at that chart as a play. On the chart i also have money flow and adx tabs along the top
Re: "E" success
May 20, 2015 02:21PM
The color indicating if you have an E on each? Is that a script?
Re: "E" success
May 20, 2015 02:27PM
Yes a simple check for E and a color of the background
Re: "E" success
May 20, 2015 02:32PM
How were you able to add it do the Watchlist window? I've tried it, and I can't get it to add.
Re: "E" success
May 20, 2015 02:51PM
Sold NFLX earlier for second loss in as many days!!!



Have not been able to watch market today



Edited 1 time(s). Last edit at 05/21/2015 09:54AM by mtut.
Re: "E" success
May 20, 2015 04:48PM
NMR,

If I shared my workspace would you know how to load and save it?
Re: "E" success
May 20, 2015 04:50PM
RR,

Do you know how to create a custom column or is your trouble code specific. Also, there is no 55 time frame for the columns. Would have to use 1 hr



Edited 1 time(s). Last edit at 05/20/2015 04:53PM by mtut.
Re: "E" success
May 20, 2015 04:52PM
yes,

I can modify the Custom1 and add the column to my Watchlist. Each time I edit the formula it states "At least one plot should be defined".

I cleared the formula and added this.

def MA1 = average(close, 5);
def MA2 = average(close, 10);
def MA3 = average(close, 20);
def Eup = MA1 > MA2 and MA2 > MA3;
def Edn = MA1 < MA2 and MA2 < MA3;

# set background color to light green if Eup, pink if Edn, and leave it at the default color if no E exists
AssignBackgroundColor( if Eup then Color.LIGHT_GREEN else if Edn then Color.PINK else Color.CURRENT );



Edited 3 time(s). Last edit at 05/20/2015 04:55PM by RichieRick.
Re: "E" success
May 20, 2015 04:55PM
yes 1 plot required try this

input short_average = 5;
input medium_average = 10;
input long_average = 20;
input average_type = {default "SMA", "EMA"};

def MA1;
def MA2;
def MA3;
switch (average_type) {
case "SMA":
MA1 = Average(close, short_average);
MA2 = Average(close, medium_average);
MA3 = Average(close, long_average);
case "EMA":
MA1 = ExpAverage(close, short_average);
MA2 = ExpAverage(close, medium_average);
MA3 = ExpAverage(close, long_average);
}


plot Eup = if MA1 > MA2 && MA2 > MA3 then 1 else 0;
def Edn = if MA1 < MA2 && MA2 < MA3 then 1 else 0;


EUp.AssignvalueColor(IF Eup THEN COLOR.LIGHT_green else if Edn then color.PINK ELSE Color.gray);

AssignbackgroundColor(IF Eup THEN COLOR.LIGHT_green else if Edn then color.PINK ELSE Color.gray);



Edited 1 time(s). Last edit at 05/22/2015 01:15PM by mtut.
Re: "E" success
May 20, 2015 05:12PM
Great!!!

That seems to be working.

It did give me pause when NFLX should be showing green in the box, and it was showing grey instead. On my 55 min E-chart the 5 and 10 clearly crossed up over the 20 by the end of the day. After a few minutes it seemed to correct on it's own.

Would the "Aggregation" time frame effect that? I was set to weekly, and I changed it to 1 hour and put a check in the box "include Extended Hours Trading". That's the closest I could got to 55 minutes.

Is there a way to have it show red or green only if the cross happened within something like the last 2 hours, and at other times just show it as grey?



Edited 1 time(s). Last edit at 05/20/2015 05:31PM by RichieRick.
Re: "E" success
May 20, 2015 05:33PM
Maybe playing around with the Aggregation time frame might give me the effect I'm looking for. If it is set to 1 hour per say, does that mean it checks to see if the condition is true over the last 1 hour?

Has anyone discovered a way to have custom Aggregation time frames within the formulas instead of the reset options??? The 1 hour and the 55 min are close for sure, but they still aren't the same and thus can give conflicting signals.



Edited 1 time(s). Last edit at 05/20/2015 06:14PM by RichieRick.
NMR
Re: "E" success
May 20, 2015 06:03PM
yes, definitely- or if you have the studies to share I can do that. It looks like what you have and are doing are a bit different that the other "E" charting that I have loaded and studied in the past, am I correct?
Re: "E" success
May 20, 2015 08:18PM
RR

As the code stands, it will reflect what the corresponding chart is showing in real time so it can change every second regardless of the aggregation period. The aggregation just tells it what time period to check the condition against. TOS does not allow for customized aggregation times in the columns

It certainly can be modified, for instance, to show only as the ma are crossing to make E signal true.Most anything you can do in the charts can be replicated in the columns,
Re: "E" success
May 20, 2015 08:27PM
NMR

Try this first



Edited 1 time(s). Last edit at 08/04/2015 12:48PM by mtut.
Re: "E" success
May 21, 2015 09:04AM
Played LNKD, BIDU and AMZN calls











Edited 3 time(s). Last edit at 05/21/2015 09:48AM by mtut.
Re: "E" success
May 22, 2015 08:55AM
Entered AAPL Long. E signal and FP on the 30







Edited 1 time(s). Last edit at 05/22/2015 08:59AM by mtut.
NMR
Re: "E" success
May 22, 2015 09:46AM
mtut-
thank you very much- it worked and I am building the custom watch list as we speak.
I also have Alchem Charts running if you (or anyone) needs a comparison.



Edited 1 time(s). Last edit at 05/22/2015 09:47AM by NMR.
Re: "E" success
May 22, 2015 12:18PM
NMR, Just curious as to your opinion on AlchemCharts. Been a QCharts user over the years but I I really like the look of AlchemCharts as well as the "WSB"-specific indicators. Been waiting on Gary to give the "official" go-ahead on making the switch. Do you have the "E" charts set up on AlchemCharts?
NMR
Re: "E" success
May 22, 2015 01:06PM
I had been a QCharts user for many years and then ran QCharts and TOS together. Recently I turned on Alchem Charts. Alchem Charts only has the MA's that he has on his charts- so I cant make the "E" (5 and 10 SMA) on the charts. Alchem Charts is pretty much specifically the WSB indicators.
Re: "E" success
May 22, 2015 01:42PM
Bought AMZN puts at 14:24

Re: "E" success
May 22, 2015 02:02PM
I do not want hijack this thread but will throw out hat I started retesting Alchem along side TradeStation a while back. I did not like the initial release but I love what they have done over the past few months. My favorite feature is the fact that all charts and timeframes are linked. If you are really into learning the GW way and practicing then Alchem makes it easy. You can scroll back to Tuesday two weeks ago at 1:23 and see what all charts actually looked like at that point in time. No cheating by seeing a completed weekly, completed autowave, or other charts/indicators. All charts and indicators will look exactly as they did at 1:23 on that day. The platform has been blessed to try. GW suggested he would run both platforms in parallel for at least a year before he officially migrates over.

NCT
Sorry, only registered users may post in this forum.

Click here to login