This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//+------------------------------------------------------------------+ | |
//| MA_EA.mq5 | | |
//| Copyright 2014 | | |
//+------------------------------------------------------------------+ | |
#property copyright "Copyright 2014" | |
#property version "1.00" | |
//--- input parameters | |
input int StopLoss=30; // Stop Loss | |
input int TakeProfit=100; // Take Profit | |
input int ADX_Period=8; // ADX Period |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HOME = . | |
RANDFILE = .rnd | |
[ ca ] | |
default_ca = CA_default # The default ca section | |
[ CA_default ] | |
dir = . # Where everything is kept | |
certs = $dir/cert # Where the issued certs are kept | |
crl_dir = $dir # Where the issued crl are kept |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
Handle multiple socket connections with select and fd_set on Linux | |
*/ | |
#include <stdio.h> | |
#include <string.h> //strlen | |
#include <stdlib.h> | |
#include <errno.h> | |
#include <unistd.h> //close | |
#include <arpa/inet.h> //close |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#define _ -F<00||--F-OO--; | |
int F=00,OO=00;main(){F_OO();printf("%1.3f\n",4.*-F/OO/OO);}F_OO() | |
{ | |
_-_-_-_ | |
_-_-_-_-_-_-_-_-_ | |
_-_-_-_-_-_-_-_-_-_-_-_ | |
_-_-_-_-_-_-_-_-_-_-_-_-_-_ | |
_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ | |
_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <string.h> | |
int main(int argc, char *argv[]){ | |
int i,j; | |
char str[10][50], temp[50]; | |
printf("Enter 10 words:\n"); | |
for(i=0;i<10;++i) | |
gets(str[i]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Copyright (c) 2012, Quenza project | |
Description: Simple Quenza Common License | |
Date: 15-06-2011 | |
Timestamp: 14-04-2012 | |
Version: Alpha-0.7 | |
QUID: {A82-SK3D82H5-D63JS-6S} | |
URL: http://dynnos.com/license/qcl/en/ | |
= Simple Quenza Common License 2012 = |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
********************************************************************** | |
** md5.h -- Header file for implementation of MD5 ** | |
** RSA Data Security, Inc. MD5 Message Digest Algorithm ** | |
** Created: 2/17/90 RLR ** | |
** Revised: 12/27/90 SRD,AJ,BSK,JT Reference C version ** | |
** Revised (for MD5): RLR 4/27/91 ** | |
** -- G modified to have y&~z instead of y&z ** | |
** -- FF, GG, HH modified to add in last register done ** | |
** -- Access pattern: round 2 works mod 5, round 3 works mod 3 ** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* mbchk - a simple checker for the format of a Multiboot kernel */ | |
/* | |
* Copyright (C) 1999,2001,2002 Free Software Foundation, Inc. | |
* | |
* This program is free software; you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation; either version 2 of the License, or | |
* (at your option) any later version. | |
* | |
* This program is distributed in the hope that it will be useful, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Btree example for DynnOS | |
* | |
* Quenza simple license | |
* 2013, Dinux | |
* | |
* | |
*/ | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class YahooFinanceAPI | |
{ | |
public $api_url = 'http://query.yahooapis.com/v1/public/yql'; | |
/** | |
* @param array $tickers The array of ticker symbols | |
* @param array|bool $fields Array of fields to get from the returned XML | |
* document, or if true use default fields, or if false return XML |
OlderNewer