Skip to content
🤔prompts chat🧠
🔍
question:Hi

answer:Hello! How can I assist you today?

question:As a prompt generator for a generative AI called "Midjourney", you will create image prompts for the AI to visualize. I will give you a concept, and you will provide a detailed prompt for Midjourney AI to generate an image. Please adhere to the structure and formatting below, and follow these guidelines: Do not use the words "description" or ":" in any form. Do not place a comma between [ar] and [v]. Write each prompt in one line without using return. Structure: [1] = 蒸汽朋克杀人蜂,在巨大的蜂巢上,身体上有齿轮 [2] = a detailed description of [1] with specific imagery details. [3] = a detailed description of the scene's environment. [4] = a detailed description of the compositions. [5] = a detailed description of the scene's mood, feelings, and atmosphere. [6] = A style (e.g. photography, painting, illustration, sculpture, artwork, paperwork, 3D, etc.) for [1]. [7] = a detailed description of the scene's mood, feelings, and atmosphere. [ar] = Use "--ar 16:9" for horizontal images, "--ar 9:16" for vertical images, or "--ar 1:1" for square images. [v] = Use "--niji" for Japanese art style, or "--v 5" for other styles. Formatting: Follow this prompt structure: "/imagine prompt: [1], [2], [3], [4], [5], [6], [7], [ar] [v]". Your task: Create 4 distinct prompts for each concept [1], varying in details description, environment,compositions,atmosphere, and realization. Write your prompts in english. Do not describe unreal concepts as "real" or "photographic". Include one realistic photographic style prompt with lens type and size. Separate different prompts with two new lines. Example Prompts: /imagine prompt: cute dog, fluffy fur, wagging tail, playful expression, sitting on a grassy field, under a clear blue sky, with a colorful collar, in a natural and vibrant setting, by a lake, captured with a Nikon D750 camera, 50mm lens, shallow depth of field, composition focused on the dog's face, capturing its joyful spirit, in a style reminiscent of William Wegman's iconic dog portraits. --ar 1:1 --v 5.2 /imagine prompt: beautiful women in the coffee shop, elegant and sophisticated, sipping a cup of steaming coffee, natural sunlight streaming through the window, soft and warm color tones, vintage decor with cozy armchairs and wooden tables, a bookshelf filled with classic novels, delicate porcelain teacups, a hint of aromatic coffee beans in the air, captured by a Leica M10 camera, 35mm lens, capturing the essence of timeless beauty, composition focused on the woman's face and hands, reminiscent of a painting by Leonardo da Vinci. --ar 1:1 --v 5.2 /imagine prompt: A captivating Halo Reach landscape with a Spartan amidst a battlefield, fallen enemies around, smoke and fire in the background, emphasizing the Spartan's determination and bravery, detailed environment blending chaos and beauty, Illustration, digital art, --ar 16:9 --v 5

answer:/imagine prompt: Steampunk killer bee, with a massive hive on its back, gears embedded in its exoskeleton, sharp metallic stingers protruding from its body, wings made of shimmering metal plates, glowing red eyes and a menacing expression, hovering mid-air with a trail of steam behind it, in a dark and smoky industrial cityscape, filled with towering factories and rusty pipes, the bee surrounded by swirling fog and sparks of electricity, a mix of shadows and dim lights creating a mysterious atmosphere, captured with a Canon EOS R camera, 50mm lens, wide aperture to focus on the intricate details of the bee, resembling a gritty cyberpunk concept art. --ar 16:9 --v 5.2 /imagine prompt: A monstrous steam-powered hornet with razor-sharp gears embedded all over its body, giving it a deadly appearance, its large wings comprised of stained glass panels, casting a kaleidoscope of colorful reflections, a double set of mandibles that can crush anything in its path, perched on top of a towering clocktower, the tallest structure in a vibrant steampunk city, with intricate pipes and wires running through the streets, steam rising from the ground, a thick layer of gears covering the buildings, creating a mesmerizing mechanical landscape, captured with a Sony A7R IV camera, wide-angle lens, capturing the sweeping view of the city and the massive hornet dominating the composition, in a style reminiscent of H.R. Giger's intricate biomechanical artworks. --ar 9:16 --v 5.2 /imagine prompt: A swarm of clockwork assassins bees, each one a mechanical marvel, with gears and cogs intricately interwoven into their bodies, their wings made of polished metal, creating a mesmerizing reflection of the surroundings, their venomous stingers capable of delivering a deadly blow, hover above a dense steampunk jungle, with intricate branches and vines made of metallic pipes and wires, gears and machinery peeking through the foliage, diffused sunlight breaking through the gaps, casting a surreal glow on the scene, captured with a Fujifilm X-T4 camera, macro lens, capturing the intricate details of the bees and the lush steampunk environment, in a style resembling the ethereal illustrations of Arthur Rackham. --ar 1:1 --v 5.2 /imagine prompt: An imposing clockwork hornet, with a massive hive on its back, intricately designed with spinning gears and whirling cogs, metallic exoskeleton reflecting the sunlight, menacing mandibles ready to strike, soaring through the cloudy skies of a dystopian steampunk metropolis, with towering skyscrapers made of gears and smokestacks belching out thick plumes of smoke, electricity crackling through the air, billboards glowing with neon steam, a sense of both awe and danger saturating the scene, captured with a Nikon Z7 camera, telephoto lens, compressing the layers of the cityscape and highlighting the hornet against the dramatic sky, in a style reminiscent of dystopian sci-fi concept art. --ar 16:9 --v 5.2

question:هلا

answer:مرحبا! كيف يمكنني مساعدتك اليوم؟

question:هل تستطيع عمل مؤشر لمنصة ميتا تريد 5 يقوم بحساب عدد الشموع الخضراء وعدد الشموع الحمراء

answer:نعم، يمكنني مساعدتك في إنشاء مؤشر لحساب عدد الشموع الخضراء والحمراء في منصة ميتاتريدر 5. فيما يلي مثال عن كيفية بناء هذا المؤشر باستخدام لغة MQL5: ```mql5 #property indicator_chart_window int OnInit() { IndicatorSetString(INDICATOR_SHORTNAME, "Green Red Candles"); SetIndexStyle(0, DRAW_HISTOGRAM); SetIndexBuffer(0, greenCandles); SetIndexLabel(0, "Green Candles"); SetIndexStyle(1, DRAW_HISTOGRAM); SetIndexBuffer(1, redCandles); SetIndexLabel(1, "Red Candles"); return(INIT_SUCCEEDED); } int OnCalculate(const int rates_total, const int prev_calculated, const datetime &time[], const double &open[], const double &high[], const double &low[], const double &close[], const long &tick_volume[], const long &volume[], const int &spread[]) { int counted_bars = IndicatorCounted(); if (counted_bars < 0) return(-1); int limit = rates_total - counted_bars; for (int i = limit; i > 0; i--) { if (close[i] > open[i]) greenCandles[i] = 1; else if (close[i] < open[i]) redCandles[i] = 1; } return(0); } ``` بمجرد تثبيت المؤشر على المنصة، ستوفر لك قيمتين في نافذة أداة الشارت: 1. "Green Candles" - يمثل عدد الشموع الخضراء. 2. "Red Candles" - يمثل عدد الشموع الحمراء. يمكنك استخدام هذا المؤشر لتحسين استراتيجيتك أو تحليل الشموع على المنصة.

Released under the MIT License.

has loaded